forked from p34709852/monkey
appimage: Replace `apt` with `apt-get`
This commit is contained in:
parent
ebd2fddd79
commit
7ab7e56b4c
|
@ -84,11 +84,11 @@ install_nodejs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
install_build_prereqs() {
|
install_build_prereqs() {
|
||||||
sudo apt update
|
sudo apt-get update
|
||||||
sudo apt upgrade -y
|
sudo apt-get upgrade -y
|
||||||
|
|
||||||
# monkey island prereqs
|
# monkey island prereqs
|
||||||
sudo apt install -y curl libcurl4 openssl git build-essential moreutils
|
sudo apt-get install -y curl libcurl4 openssl git build-essential moreutils
|
||||||
install_nodejs
|
install_nodejs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue