diff options
author | Daniel J Griffiths <ghost1227@archlinux.us> | 2009-09-18 11:50:20 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-18 11:50:20 -0700 |
commit | 915c5ce3119c84aedf30c14d0e9a87a84510271a (patch) | |
tree | 5e4ab0929aa5829f90f0944c1844f6393968db68 /community-testing2community-any | |
parent | 428a876ba62be88320acb11c48a1a3f45cc209a9 (diff) |
Add "testing to repo" for any pkgs in community
Whoops, missed this in the last commit
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'community-testing2community-any')
-rwxr-xr-x | community-testing2community-any | 11 |
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 |