From ec60e20331c7becd1b46ca38291f4c75db25e168 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Tue, 6 Nov 2012 16:32:59 -0600 Subject: [PATCH] tmpfiles: fix bashism reported-by: --- sh/tmpfiles.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/tmpfiles.sh.in b/sh/tmpfiles.sh.in index a5041bb8..ca0cbc3b 100755 --- a/sh/tmpfiles.sh.in +++ b/sh/tmpfiles.sh.in @@ -232,7 +232,7 @@ if [ $(( CLEAN )) -eq 1 ] ; then exit 1 fi -if [ "$CREATE$REMOVE" == '00' ]; then +if [ "$CREATE$REMOVE" = '00' ]; then printf 'usage: %s [--create] [--remove] [--clean] [--verbose] [--dry-run]\n' "${0##*/}" exit 1 fi