summaryrefslogtreecommitdiffstats
path: root/karm/test/booktime-works.sh
diff options
context:
space:
mode:
authorOBATA Akio <obache@wizdas.com>2019-08-15 17:02:19 +0900
committerOBATA Akio <obache@wizdas.com>2019-08-15 17:23:01 +0900
commit0009cb8171f141e113777e7f6557a0cfa1542d5a (patch)
treed1e7cb6a0ae3aba7d4b72ca4d475b276fe1f895d /karm/test/booktime-works.sh
parentc349db5d278566f8f129e8bd54751155fad49d9e (diff)
downloadtdepim-0009cb8171f141e113777e7f6557a0cfa1542d5a.tar.gz
tdepim-0009cb8171f141e113777e7f6557a0cfa1542d5a.zip
fix some sh portability fixes
Replace bash specific way with POSIX one. Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'karm/test/booktime-works.sh')
-rwxr-xr-xkarm/test/booktime-works.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/karm/test/booktime-works.sh b/karm/test/booktime-works.sh
index 280e1231b..4f242163c 100755
--- a/karm/test/booktime-works.sh
+++ b/karm/test/booktime-works.sh
@@ -2,7 +2,7 @@
TESTFILE="/tmp/testkarm1.ics"
-source __lib.sh
+. ./__lib.sh
set_up
@@ -21,7 +21,7 @@ RVAL=`dcop $DCOPID KarmDCOPIface totalMinutesForTaskId $TASKID 2>/dev/null`
SKIP_TESTFILE_DELETE=true
tear_down
-if [ "x$RVAL" == "x$DURATION" ]; then
+if [ "x$RVAL" = "x$DURATION" ]; then
echo "PASS $0"
exit 0;
else