We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c48645a commit 1dafb23Copy full SHA for 1dafb23
lib/common.sh
@@ -105,6 +105,9 @@ download_dependency() {
105
}
106
107
download_packages() {
108
+ # Using unset to remove elements from an array did not always yield
109
+ # the expected outcome... for instance, removing "python2.7-doc"
110
+ # resulted in the following error: invalid arithmetic operator (error token is ".7-doc")
111
local packages=("$@")
112
local pkgs=()
113
for package in "${packages[@]}"; do
0 commit comments