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.
moonstone/vanilla_first_setup
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
```
1 year ago
..
assets/bundle-app-icons misc: Add timeshift 2 years ago
defaults misc: Use socket for conn check 2 years ago
gtk misc: Mixed improvements 2 years ago
layouts core: Allow disabling preferences 2 years ago
utils fix: Change conn-check syntax 1 year ago
views misc: Mixed improvements 2 years ago
__init__.py re-rebrand 2 years ago
dialog.py Fix close + add shortcut controller 2 years ago
main.py update app id 2 years ago
meson.build 1.0.0 2 years ago
vanilla-first-setup-processor.in fix bool identification and add some logs 2 years ago
vanilla-first-setup.gresource.xml misc: Add timeshift 2 years ago
vanilla-first-setup.in re-rebrand 2 years ago
window.py misc: Mixed improvements 2 years ago