diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-12-09 02:37:24 +0100 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-12-09 02:37:24 +0100 |
commit | 0c3877ba84047e346034ab683e20f77efafd044b (patch) | |
tree | d97ebfe41773c86ffda36ac8bd3f63600a2cb200 | |
parent | 307fd5e03d78a23e5f5c9db75c0d5b0495d870cf (diff) | |
download | midipix_build-0c3877ba84047e346034ab683e20f77efafd044b.tar.bz2 midipix_build-0c3877ba84047e346034ab683e20f77efafd044b.tar.xz |
subr/pkg.subr: fix -r <pkg>:<step>,<step>[,...] processing.
-rw-r--r-- | subr/pkg.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg.subr b/subr/pkg.subr index a3b66e2d..0654c4aa 100644 --- a/subr/pkg.subr +++ b/subr/pkg.subr @@ -50,7 +50,7 @@ is_build_script_done() { return 1; # Build elif match_list "${ARG_RESTART}" , ${BUILD_PACKAGE_LC}; then if [ -n "${ARG_RESTART_AT}" ] \ - && [ "${ARG_RESTART_AT}" != "${1}" ]; then + && ! match_list "${ARG_RESTART_AT}" , "${1}"; then return 0; # Skip else return 1; # Build |