diff options
Diffstat (limited to 'communityco')
-rwxr-xr-x | communityco | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/communityco b/communityco index 83e5aae..f4f3e97 100755 --- a/communityco +++ b/communityco @@ -1,10 +1,13 @@ #!/bin/bash -if [ "$1" = "" ]; then - echo "Usage: communityco <package name> [<package name>]" +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 + svn co svn+ssh://aur.archlinux.org/srv/svn-packages/$i done + +# vim: set noexpandtab tabstop=8 shiftwidth=8 wrap:textwidth=132 autoindent +# kate: indent-mode normal; indent-width 8; tab-indents on; tab-width 8; word-wrap on; word-wrap-column 132 |