update bootstrap.sh

This commit is contained in:
pommicket 2021-11-10 12:58:28 -05:00
parent 2288e47516
commit 8f527338ae

View file

@ -45,7 +45,17 @@ if [ "$(./out01)" != 'Hello, world!' ]; then
echo_red 'Stage 01 failed.' echo_red 'Stage 01 failed.'
exit 1 exit 1
fi 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 .. cd ..