Merge pull request #1014 from apernet/wip-install-script-apt-update

chore(scripts): run apt update on apt based distro
This commit is contained in:
Toby 2024-03-30 16:29:45 -07:00 committed by GitHub
commit f91efbeded
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -236,6 +236,7 @@ detect_package_manager() {
fi
if has_command apt; then
apt update
PACKAGE_MANAGEMENT_INSTALL='apt -y --no-install-recommends install'
return 0
fi