From c59a8d63fdde582b77721c9a970273b3ef701a25 Mon Sep 17 00:00:00 2001 From: Gorgone Date: Thu, 4 Jun 2020 12:08:43 +0200 Subject: [PATCH] fix checkout on parallels desktop/ubuntu (on mac) --- support/functions/_update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/functions/_update b/support/functions/_update index 8d043ee..ac945e0 100644 --- a/support/functions/_update +++ b/support/functions/_update @@ -14,7 +14,7 @@ update_me(){ fi online_revision=$(gitrevision $s3url) - if [ ! $local_revision == $online_revision ] + if [ ! "$local_revision" == "$online_revision" ] then printf " update s3_git to\n Local Revision: $online_revision\n" svn -q checkout "$s3url" "$s3local"