diff options
author | Kenny Levinsen <kl@kl.wtf> | 2021-03-16 13:33:35 +0100 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2021-03-16 13:36:26 +0100 |
commit | a9865adb5f354f762a7d38c981187440ccb80a60 (patch) | |
tree | 14ace0c19ce5f430ba631a7b378dfb437f443ca0 /.builds | |
parent | 745d66292034c53aef1febc72248bc3800826149 (diff) |
ci: Remove unnecessary env vars
Diffstat (limited to '.builds')
-rwxr-xr-x | .builds/smoketest-builtin.sh | 4 | ||||
-rwxr-xr-x | .builds/smoketest-seatd.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.builds/smoketest-builtin.sh b/.builds/smoketest-builtin.sh index b022b77..332c3f9 100755 --- a/.builds/smoketest-builtin.sh +++ b/.builds/smoketest-builtin.sh @@ -18,8 +18,8 @@ fi cnt=0 while [ "$cnt" -lt 2 ] do - echo "Simpletest run $cnt" - if ! sudo LIBSEAT_BACKEND=builtin LIBSEAT_LOGLEVEL=debug SEATD_SOCK=./seatd.sock ./build/simpletest $file + echo "Simpletest run $((cnt+1))" + if ! sudo LIBSEAT_BACKEND=builtin ./build/simpletest $file then echo "Simpletest failed" exit $res diff --git a/.builds/smoketest-seatd.sh b/.builds/smoketest-seatd.sh index 7c5b7fe..d8c2ac3 100755 --- a/.builds/smoketest-seatd.sh +++ b/.builds/smoketest-seatd.sh @@ -40,8 +40,8 @@ fi cnt=0 while [ "$cnt" -lt 2 ] do - echo "Simpletest run $cnt" - if ! LIBSEAT_LOGLEVEL=debug SEATD_SOCK=./seatd.sock ./build/simpletest $file + echo "Simpletest run $((cnt+1))" + if ! SEATD_SOCK=./seatd.sock ./build/simpletest $file then echo "Simpletest failed" sudo killall seatd |