mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 05:33:03 -05:00
8 lines
230 B
Bash
8 lines
230 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
rm -f bootstrap.py
|
||
|
wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
|
||
|
python3 bootstrap.py --no-interactive --application-choice=browser
|
||
|
rm -f bootstrap.py
|