diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-07 07:30:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 07:30:48 -0500 |
commit | 2b79e6ba243d3844344372067554f9298210893c (patch) | |
tree | 228ff110e466d6775efd21b45f39483ed2009f78 /src-qt5/core | |
parent | Convert the ResizeMenu class into it's own files: (diff) | |
parent | Fix unportable test(1) operator. (diff) | |
download | lumina-2b79e6ba243d3844344372067554f9298210893c.tar.gz lumina-2b79e6ba243d3844344372067554f9298210893c.tar.bz2 lumina-2b79e6ba243d3844344372067554f9298210893c.zip |
Merge pull request #299 from 0-wiz-0/master
Fix unportable test(1) operator.
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 |