mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-21 21:23:08 -05:00
7 lines
230 B
Bash
Executable file
7 lines
230 B
Bash
Executable file
#!/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
|