summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel J Griffiths <ghost1227@archlinux.us>2009-09-18 20:50:20 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2009-09-18 20:50:20 +0200
commit915c5ce3119c84aedf30c14d0e9a87a84510271a (patch)
tree5e4ab0929aa5829f90f0944c1844f6393968db68
parent428a876ba62be88320acb11c48a1a3f45cc209a9 (diff)
downloaddbscripts-915c5ce3119c84aedf30c14d0e9a87a84510271a.tar.gz
dbscripts-915c5ce3119c84aedf30c14d0e9a87a84510271a.tar.xz
Add "testing to repo" for any pkgs in community
Whoops, missed this in the last commit Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-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