diff options
author | Daniel J Griffiths <ghost1227@archlinux.us> | 2009-09-18 20:49:21 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-18 20:49:21 +0200 |
commit | 428a876ba62be88320acb11c48a1a3f45cc209a9 (patch) | |
tree | d10d543c1387fca0934da1f71ad2c32a4da01515 /community-testing2community64 | |
parent | beeccefdb996084b9edef27a5bbdace4c10ba1be (diff) | |
download | dbscripts-428a876ba62be88320acb11c48a1a3f45cc209a9.tar.gz dbscripts-428a876ba62be88320acb11c48a1a3f45cc209a9.tar.xz |
Add "testing to repo" scripts for community
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'community-testing2community64')
-rwxr-xr-x | community-testing2community64 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/community-testing2community64 b/community-testing2community64 new file mode 100755 index 0000000..3f88a4d --- /dev/null +++ b/community-testing2community64 @@ -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" "x86_64" +done |