Gotta put that & at the end to be consistent with everything else

This commit is contained in:
Alexandre Aubin 2020-12-19 03:14:13 +01:00
parent a0c2b22be9
commit c958b7eff5

View file

@ -68,7 +68,7 @@ _INSTALL_APP () {
then
local default_value=$(jq -e -r --arg ARG $ARG '.arguments.install[] | select(.name==$ARG) | .default' $package_path/manifest.json)
[[ $? -eq 0 ]] || { log_error "Missing install arg $ARG ?"; return 1; }
install_args+="&$ARG=$default_value"
install_args+="$ARG=$default_value&"
fi
done