Fix package manager commands for debian

This commit is contained in:
david pickle 2025-01-27 00:16:34 -06:00
parent 41677efb3d
commit 0d1fb62b53

@ -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"