diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-02-13 19:47:16 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-02-13 19:47:16 +0100 |
commit | 362a99b99559a2885b8b3d015b1ba4b2ea96429e (patch) | |
tree | 8385a06b282d1b1566a5258bca9ca6978be669f1 /communityco | |
parent | 7a8130fec8121b777b1ee878c6f5947ef25a0d11 (diff) | |
download | devtools32-362a99b99559a2885b8b3d015b1ba4b2ea96429e.tar.xz |
apply common coding style
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 |