summaryrefslogtreecommitdiffstats
path: root/community-testing2community-any
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing2community-any')
-rwxr-xr-xcommunity-testing2community-any11
1 files changed, 11 insertions, 0 deletions
diff --git a/community-testing2community-any b/community-testing2community-any
new file mode 100755
index 0000000..e63a7ec
--- /dev/null
+++ b/community-testing2community-any
@@ -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" "community-testing" "community" "any"
+done