summaryrefslogtreecommitdiffstats
path: root/archrm
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-02-13 19:47:16 +0100
committerPierre Schmitz <pierre@archlinux.de>2010-02-13 19:47:16 +0100
commit362a99b99559a2885b8b3d015b1ba4b2ea96429e (patch)
tree8385a06b282d1b1566a5258bca9ca6978be669f1 /archrm
parent7a8130fec8121b777b1ee878c6f5947ef25a0d11 (diff)
downloaddevtools-362a99b99559a2885b8b3d015b1ba4b2ea96429e.tar.gz
devtools-362a99b99559a2885b8b3d015b1ba4b2ea96429e.tar.xz
apply common coding style
Diffstat (limited to 'archrm')
-rwxr-xr-xarchrm7
1 files changed, 5 insertions, 2 deletions
diff --git a/archrm b/archrm
index 855e9f5..d2c0997 100755
--- a/archrm
+++ b/archrm
@@ -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