From 362a99b99559a2885b8b3d015b1ba4b2ea96429e Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 13 Feb 2010 19:47:16 +0100 Subject: apply common coding style --- archco | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'archco') diff --git a/archco b/archco index 0dc1c4c..f713e2d 100755 --- a/archco +++ b/archco @@ -1,10 +1,13 @@ #!/bin/bash -if [ "$1" = "" ]; then - echo "Usage: archco []" +if [ "$1" = '' ]; then + echo 'Usage: archco []' exit 1 fi for i in "$@"; do - svn co svn+ssh://gerolde.archlinux.org/srv/svn-packages/$i + svn co svn+ssh://gerolde.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 -- cgit v1.2.3-24-g4f1b