Commit 7276799b by Vincent Catros

avoid assigning to a variable which is not POSIX shell proof (bug #1498)

parent 67c97521
...@@ -263,8 +263,8 @@ install() { ...@@ -263,8 +263,8 @@ install() {
} }
install_packages() { install_packages() {
local arch="$1"; shift local arch="$1"
local packages="$@" local packages="$2"
$APK --arch="$arch" --root=. --keys-dir="$APK_KEYS_DIR" \ $APK --arch="$arch" --root=. --keys-dir="$APK_KEYS_DIR" \
--update-cache --initdb add $packages --update-cache --initdb add $packages
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment