Skip to content

makechrootpkg: parse default_makepkg_args as well

Mike Yuan requested to merge (removed):parse-default_makepkg_args into master

We're looping through ${@:OPTIND} rather than ${makepkg_args[@]} for parsing currently, thus excluding options in ${default_makepkg_args[@]}. However, ${default_makepkg_args[@]} may contain options that need parsing (and it does at the moment). So, looping through ${makepkg_args[@]} could be a better choice.

Merge request reports