index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-08-18 15:52:54 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-08-18 15:52:54 -0700 |
commit | d837403780dbf479dc98296a3b94b7f43ae5bc35 (patch) | |
tree | 26ff9c66ccdbeb5ee86b672b4d997e68fb389835 /communityco | |
parent | 568e21f1ac2355d06c7c6c66dc3d1205150bc00f (diff) |
-rwxr-xr-x | communityco | 10 |
diff --git a/communityco b/communityco new file mode 100755 index 0000000..83e5aae --- /dev/null +++ b/communityco @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ "$1" = "" ]; then + echo "Usage: communityco <package name> [<package name>]" + exit 1 +fi + +for i in "$@"; do + svn co svn+ssh://aur.archlinux.org/srv/svn-packages/$i +done |