diff options
author | tv <tv@nomic.retiolum> | 2013-11-14 12:38:30 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-11-14 12:39:08 +0100 |
commit | 36d6c36f45ab0207191248351b24544fbcf40666 (patch) | |
tree | b83c6595a6625102bc80c174d2c8029178eb5727 | |
parent | faf2e8e5386c29d3a3a39a3d21c6ebd3405adaed (diff) |
ship punani: use implicit $@
-rw-r--r-- | ship/lib/punani | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ship/lib/punani b/ship/lib/punani index ab9d92a5..af267ac8 100644 --- a/ship/lib/punani +++ b/ship/lib/punani @@ -33,9 +33,7 @@ punani(){ die "usage: $_punani_usage" fi - PKGS="$*" - - for PKG in $PKGS; do + for PKG; do RES="`_punani_resolve_package $PKG`" test -z "$RES" && error "could not resolve '$PKG'; no punani for you!"&& return 23 case "$ACTION" in |