aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2016-11-07 10:07:05 +0100
committerThomas Klausner <wiz@NetBSD.org>2016-11-07 10:07:05 +0100
commitecae524c77a84b5855fa6390b7e0166c17349c18 (patch)
tree228ff110e466d6775efd21b45f39483ed2009f78 /src-qt5/core
parentConvert the ResizeMenu class into it's own files: (diff)
downloadlumina-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-xsrc-qt5/core/menu-scripts/ls.json.sh2
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
bgstack15