diff options
Diffstat (limited to 'archrm')
-rwxr-xr-x | archrm | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/bin/bash -if [ "$1" = "" ]; then - echo "Usage: archrm <path to checkout>" +if [ "$1" = '' ]; then + echo 'Usage: archrm <path to checkout>' exit 1 fi @@ -11,3 +11,6 @@ fi #popd rm -rf $1 + +# 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 |