Unverified Commit bc86797e by Vincent Catros Committed by Stéphane Graber

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

parent f4f749a4
......@@ -261,8 +261,8 @@ install() {
}
install_packages() {
local arch="$1"; shift
local packages="$@"
local arch="$1"
local packages="$2"
$APK --arch="$arch" --root=. --keys-dir="$APK_KEYS_DIR" \
--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