diff options
author | Luca Boccassi <bluca@debian.org> | 2020-12-19 19:42:20 +0100 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-12-19 22:56:57 +0100 |
commit | 92fa741cf2824f47a1ad81dd6d2f08d7f0266272 (patch) | |
tree | d0a7fa952416ffe21d77bdb8a8bc849b0491ef0b /test/run-integration-tests.sh | |
parent | test: use deny-list in run-integration-tests.sh (diff) | |
download | systemd-92fa741cf2824f47a1ad81dd6d2f08d7f0266272.tar.xz systemd-92fa741cf2824f47a1ad81dd6d2f08d7f0266272.zip |
test: fix regex in run-integration-tests.sh
The regex results in calls of "make setup run -again" which is broken
Diffstat (limited to 'test/run-integration-tests.sh')
-rwxr-xr-x | test/run-integration-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 2d3f0ee94f..3c01adfca3 100755 --- a/test/run-integration-tests.sh +++ b/test/run-integration-tests.sh @@ -7,7 +7,7 @@ if [ $# -gt 0 ]; then else args="setup run clean-again" fi -args_no_clean=$(sed -r 's/\bclean\b//g' <<<$args) +args_no_clean=$(sed -r 's/\bclean.*\b//g' <<<$args) do_clean=$( [ "$args" = "$args_no_clean" ]; echo $? ) ninja -C "$BUILD_DIR" |