Bugfix: package install

This commit is contained in:
Akemi Izuko 2023-11-20 20:24:24 -07:00
parent f39f1296a6
commit d8f73ae16d
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC
2 changed files with 2 additions and 2 deletions

View file

@ -241,7 +241,7 @@ print_install_completion_msg() {
Dotfile installation complete.
To install packages, run: \`./package_install.sh help\`
To install packages, run: \`./package_install.py help\`
To check additional options, run: \`./post_install.sh help\`
END
}

View file

@ -469,7 +469,7 @@ def install_package(apt, package):
install = subprocess.call(install_cmd)
return install.returncode == 0
return install == 0
def install_packages(apt):