diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2012-11-06 16:32:59 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2012-11-06 16:32:59 -0600 |
commit | ec60e20331c7becd1b46ca38291f4c75db25e168 (patch) | |
tree | edc95b381dd1ac14fa16e420b50bc195369c59e5 | |
parent | 5657fa797512b31ada66e901b891961e63861208 (diff) |
tmpfiles: fix bashism
reported-by: <pesa@gentoo.org>
-rwxr-xr-x | sh/tmpfiles.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |