diff options
Diffstat (limited to 'testing2core64')
-rwxr-xr-x | testing2core64 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing2core64 b/testing2core64 new file mode 100755 index 0000000..4d30036 --- /dev/null +++ b/testing2core64 @@ -0,0 +1,11 @@ +#!/bin/bash + +if [ $# -le 0 ]; then + echo "usage: $(basename 0) <packagename> [<packagename> [<packagename ...]]" + exit 0 +fi + +for pkg in $@; do + echo "==> Moving package '$pkg'" + $(dirname $0)/db-move "$pkg" "testing" "core" "x86_64" +done |