From 56d4dec19fbcec23f677114e4104bb9df902ed9f Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 2 Dec 2011 08:33:33 +0100 Subject: Use double brackets everywhere We already fixed a couple of these in previous patches - this one should replace all remaining uses of single brackets ("[") by double brackets. Also, use arithmetic evaluation instead of conditional expressions where appropriate and make use of "-z" and "-n" instead of comparing variables to empty strings. Signed-off-by: Lukas Fleischer --- archrm.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archrm.in') diff --git a/archrm.in b/archrm.in index a4830ee..7c7139b 100644 --- a/archrm.in +++ b/archrm.in @@ -2,7 +2,7 @@ m4_include(lib/common.sh) -if [ "$1" = '' ]; then +if [[ -z $1 ]]; then echo 'Usage: archrm ' exit 1 fi -- cgit v1.2.3-24-g4f1b