Browse Source

Fixed empty variable error

master
Sven Karsten 3 months ago
parent
commit
6e61dacb82
  1. 1
      Readme.md
  2. 2
      test.sh

1
Readme.md

@ -20,6 +20,7 @@ The results of a test are summarized in a jupyter book that you can find under
Just open it in a browser of your choice.
With `report/publish.sh` the test result may also be published to github repository with enavled github pages.
This is currently existing under https://sven-karsten.github.io/iow_esm.test/intro.html.
# Authors

2
test.sh

@ -194,7 +194,7 @@ while [ ${finished} -lt ${total_runs} ]; do
fi
done=${setup}_done
if [ ${!done} == true ]; then
if [ "${!done}" == true ]; then
continue
fi

Loading…
Cancel
Save