diff options
Diffstat (limited to 'testing2core')
-rwxr-xr-x | testing2core | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/testing2core b/testing2core index 417ab0e..3a7acbf 100755 --- a/testing2core +++ b/testing2core @@ -1,13 +1,11 @@ #!/bin/bash -if [ $# -le 1 ]; then - echo "usage: $(basename 0) <arch> <packagename> [<packagename> [<packagename ...]]" +if [ $# -le 0 ]; then + echo "usage: $(basename 0) <packagename> [<packagename> [<packagename ...]]" exit 0 fi -arch=$1; shift - for pkg in $@; do echo "==> Moving package '$pkg'" - $(dirname $0)/db-move "$pkg" "testing" "core" "$arch" + $(dirname $0)/db-move "$pkg" "testing" "core" "i686" done |