You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Adam Israel 3b295d4d04 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
```
2 years ago
..
__init__.py re-rebrand 2 years ago
builder.py misc: Mixed improvements 2 years ago
meson.build 1.0.0 2 years ago
parser.py Add apps UI 2 years ago
processor.py fix: Change conn-check syntax 2 years ago
recipe.py Add apps UI 2 years ago
run_async.py 1.0.0 2 years ago