diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2025-05-06 18:45:14 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2025-05-07 16:14:30 +0200 |
commit | 97f2dbe65ac7bace3c2a252a5edbb7aa95a1b674 (patch) | |
tree | e726bac59d2f92edb85045a831e4dc8247b84983 /rules | |
parent | a61004f7495df432c89ff3ff69512bb66eed7cb8 (diff) | |
download | justbuild-97f2dbe65ac7bace3c2a252a5edbb7aa95a1b674.tar.gz |
rules: Do not assume out_dirs exist
Diffstat (limited to 'rules')
-rwxr-xr-x | rules/lint/call_lint | 1 | ||||
-rwxr-xr-x | rules/lint/call_summary | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/rules/lint/call_lint b/rules/lint/call_lint index fd2a2445..850812e5 100755 --- a/rules/lint/call_lint +++ b/rules/lint/call_lint @@ -20,6 +20,7 @@ touch stderr RESULT=UNKNOWN echo "${RESULT}" > result +mkdir -p out export OUT="$(pwd)/out" mkdir -p config export CONFIG="$(pwd)/config" diff --git a/rules/lint/call_summary b/rules/lint/call_summary index d4aa8cb7..9686d0a5 100755 --- a/rules/lint/call_summary +++ b/rules/lint/call_summary @@ -19,6 +19,7 @@ touch report RESULT=UNKNOWN echo "${RESULT}" > result +mkdir -p out export OUT="$(pwd)/out" cd work |