Minor updates in the main build script.

This commit is contained in:
Ivan Davidov 2017-12-04 02:53:29 +02:00
parent dcfa71368f
commit fa31e83b5c

View File

@ -1,6 +1,8 @@
#!/bin/sh #!/bin/sh
set -e
for script in $(ls | grep '^[0-9]*_.*.sh'); do for script in $(ls | grep '^[0-9]*_.*.sh'); do
echo "$script" echo "Executing script '$script'."
./"$script" ./$script
done done