Fix package manager commands for debian

This commit is contained in:
david 2025-04-04 16:55:39 -05:00
parent 1c6b905bae
commit 6fb6caa4cc

View File

@ -12,9 +12,9 @@ case $BOX_SETUP_OS in
update_pkgs_cmd='sudo pacman -Syu'
;;
(debian)
install_cmd="sudo aptitude install"
update_pkg_manager_and_defs_cmd='sudo aptitude update'
update_pkgs_cmd='sudo aptitude full-upgrade'
install_cmd="sudo apt install"
update_pkg_manager_and_defs_cmd='sudo apt update'
update_pkgs_cmd='sudo apt upgrade'
;;
(macos)
install_cmd="brew install"