appimage: Replace `apt` with `apt-get`

This commit is contained in:
Mike Salvatore 2021-04-30 07:40:05 -04:00
parent ebd2fddd79
commit 7ab7e56b4c
1 changed files with 3 additions and 3 deletions

View File

@ -84,11 +84,11 @@ install_nodejs() {
}
install_build_prereqs() {
sudo apt update
sudo apt upgrade -y
sudo apt-get update
sudo apt-get upgrade -y
# 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
}