0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 05:33:03 -05:00

Use apt-get instead of apt

`apt` must not be used in anything automated, per its own docs.
This commit is contained in:
keypresser 2024-02-06 00:27:49 -07:00
parent 0aa1f8c9f7
commit 06f32a80c8

View file

@ -112,7 +112,7 @@ $(lw_source_tarball) : $(lw_source_dir)
debs=python3 python3-dev python3-pip
rpms=python3 python3-devel
bootstrap : $(lw_source_dir)
(sudo apt -y install $(debs); true)
(sudo apt-get -y install $(debs); true)
(sudo rpm -y install $(rpms); true)
(cd $(lw_source_dir) && MOZBUILD_STATE_PATH=$$HOME/.mozbuild ./mach --no-interactive bootstrap --application-choice=browser)