typo pour le répertoire de test

This commit is contained in:
nas 2021-02-19 12:36:10 +01:00
commit bac3f75665

View file

@ -1,4 +1,15 @@
#!/bin/sh
echo "\nLaunching every tests"
echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾\n"
echo "Starting server"
echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾"
cd ..
php -S 192.168.1.152:8080 &
server=$!
cd test
sh login.sh
find . -iname "*_*.sh" -type f -exec sh {} \;
echo "Stoping server"
echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾"
kill $server