diff options
-rwxr-xr-x | bootstrap.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 7025b8c..cd63ddd 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -45,7 +45,17 @@ if [ "$(./out01)" != 'Hello, world!' ]; then echo_red 'Stage 01 failed.' exit 1 fi -rm -f out0[01] +rm -f out01 +cd .. + +echo 'Processing stage 02...' +cd 02 +rm -rf out0[12] +make -s out02 +if [ "$(./out02)" != 'Hello, world!' ]; then + echo_red 'Stage 02 failed.' + exit 1 +fi cd .. |