Gottox commented on this pull request.
> @@ -415,7 +415,7 @@ XBPS_OPTIONS=
XBPS_OPTSTRING="a:CEfgGhH:Ij:Lm:No:r:tV"
# Preprocess arguments in order to allow options before and after XBPS_TARGET.
-eval set -- $(getopt -- "$XBPS_OPTSTRING" "$@");
+eval set -- $(getopt "$XBPS_OPTSTRING" "$@");
What does this fix?
Gottox commented on this pull request.
> @@ -415,7 +415,7 @@ XBPS_OPTIONS=
XBPS_OPTSTRING="a:CEfgGhH:Ij:Lm:No:r:tV"
# Preprocess arguments in order to allow options before and after XBPS_TARGET.
-eval set -- $(getopt -- "$XBPS_OPTSTRING" "$@");
+eval set -- $(getopt "$XBPS_OPTSTRING" "$@");
ok, thx :)