fix: Change conn-check syntax
Using the stock `recipe.json`, I encountered some syntax errors around the conn-check; ```bash wget -q --spider cloudflare.comif [ $? != 0 ]; thenecho 'No internet connection!'exit 1export DEBIAN_FRONTEND=noninteractive ``` where it should look like: ```bash wget -q --spider cloudflare.com if [ $? != 0 ]; then echo 'No internet connection!'exit 1 fi export DEBIAN_FRONTEND=noninteractive ```main
parent
4d693bff04
commit
3b295d4d04
Loading…
Reference in New Issue