add 7zip to check_dependencies() in run.sh (#111)

This commit is contained in:
bri 2022-09-14 12:36:18 -04:00 committed by GitHub
parent 32c19f2f03
commit adac723617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,6 +43,7 @@ check_dependencies() {
command -v resize2fs >/dev/null 2>&1 || NEED_INSTALL+=("e2fsprogs")
command -v pip >/dev/null 2>&1 || NEED_INSTALL+=("python3-pip")
command -v aria2c >/dev/null 2>&1 || NEED_INSTALL+=("aria2")
command -v 7zip > /dev/null 2>&1 || NEED_INSTALL+=("7zip")
}
check_dependencies
declare -A os_pm_install;