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:
parent
0aa1f8c9f7
commit
06f32a80c8
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue