From 8f527338ae76282a5ec56833984775e6889023e1 Mon Sep 17 00:00:00 2001 From: pommicket Date: Wed, 10 Nov 2021 12:58:28 -0500 Subject: update bootstrap.sh --- bootstrap.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 .. -- cgit v1.2.3