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