6 lines
108 B
Bash
Executable File
6 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
./clean.sh
|
|
./build.sh
|
|
bash -c './out/program; echo "Process exited with status code $?"'
|