We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5edaef4 commit be42078Copy full SHA for be42078
run_examples.sh
@@ -13,13 +13,14 @@ for file in $folder_path/*; do
13
echo $file
14
# Check if the file is executable
15
if [[ -f "$file" && -x "$file" ]]; then
16
+ printf "\n#### Executing '$file'\n"
17
# Execute the file
18
./"$file" $@
19
# Check the exit status
20
exit_status=$?
21
if [[ $exit_status -ne 0 ]]; then
- echo "Execution of '$file' failed with exit status $exit_status."
22
- exit 1
+ echo "Execution of '$file' failed with exit status $exit_status."
23
+ exit 1
24
fi
25
# Delay for 10 seconds to avoid too fast reconnects
26
echo "Sleep 10"
0 commit comments