7 lines
95 B
Bash
Executable File
7 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
./clean.sh
|
|
./build.sh
|
|
./out/program
|
|
echo "Process exited with status code $?"
|