diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2016-11-07 10:07:05 +0100 |
---|---|---|
committer | Thomas Klausner <wiz@NetBSD.org> | 2016-11-07 10:07:05 +0100 |
commit | ecae524c77a84b5855fa6390b7e0166c17349c18 (patch) | |
tree | 228ff110e466d6775efd21b45f39483ed2009f78 /src-qt5/core | |
parent | Convert the ResizeMenu class into it's own files: (diff) | |
download | lumina-ecae524c77a84b5855fa6390b7e0166c17349c18.tar.gz lumina-ecae524c77a84b5855fa6390b7e0166c17349c18.tar.bz2 lumina-ecae524c77a84b5855fa6390b7e0166c17349c18.zip |
Fix unportable test(1) operator.
Only bash supports "==", the standard is "=".
Diffstat (limited to 'src-qt5/core')
-rwxr-xr-x | src-qt5/core/menu-scripts/ls.json.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/menu-scripts/ls.json.sh b/src-qt5/core/menu-scripts/ls.json.sh index 43b0ead6..754a10d4 100755 --- a/src-qt5/core/menu-scripts/ls.json.sh +++ b/src-qt5/core/menu-scripts/ls.json.sh @@ -1,6 +1,6 @@ #!/bin/sh DIR=${1} -if [ "$1" == "" ] ; then +if [ "$1" = "" ] ; then DIR=`pwd` fi |