mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
test: fix regex in run-integration-tests.sh
The regex results in calls of "make setup run -again" which is broken
This commit is contained in:
parent
b382b8de1e
commit
92fa741cf2
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user