diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2025-05-07 16:21:52 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2025-05-07 16:21:52 +0200 |
commit | eff965fdd8f03668f99d9c90ea9a3f81dabc3b66 (patch) | |
tree | 57bc6a2ea45812845f851c9059e2d0104a4f4574 | |
parent | 1e7f2ce643f9b2c7e07c7cec7f04bcf13b489668 (diff) | |
parent | 4898fb180fbf09f49da5d15f29f7eb199a43b02f (diff) | |
download | rules-cc-eff965fdd8f03668f99d9c90ea9a3f81dabc3b66.tar.gz |
Merge branch 'just-rules' into rules
* rules/oss:
rules: Do not assume out_dirs exist
-rwxr-xr-x | lint/call_lint | 1 | ||||
-rwxr-xr-x | lint/call_summary | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lint/call_lint b/lint/call_lint index fd2a244..850812e 100755 --- a/lint/call_lint +++ b/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/lint/call_summary b/lint/call_summary index d4aa8cb..9686d0a 100755 --- a/lint/call_summary +++ b/lint/call_summary @@ -19,6 +19,7 @@ touch report RESULT=UNKNOWN echo "${RESULT}" > result +mkdir -p out export OUT="$(pwd)/out" cd work |