update bootstrap.sh with 03

This commit is contained in:
pommicket 2021-11-14 00:43:09 -05:00
parent 3fb2c2c4d8
commit 253901b302

View file

@ -58,5 +58,15 @@ if [ "$(./out02)" != 'Hello, world!' ]; then
fi fi
cd .. cd ..
echo 'Processing stage 03...'
cd 03
rm -rf out0[23]
make -s out03
if [ "$(./out03)" != 'Hello, world!' ]; then
echo_red 'Stage 03 failed.'
exit 1
fi
cd ..
echo_green 'all stages completed successfully!' echo_green 'all stages completed successfully!'