From e7745ee598febd77be3c6149e112bc8856988b2e Mon Sep 17 00:00:00 2001
From: nrbffs <38812627+nrbffs@users.noreply.github.com>
Date: Sat, 12 Oct 2019 17:04:01 +0200
Subject: [PATCH] fix logic

---
 update-gluon.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/update-gluon.sh b/update-gluon.sh
index 3d78adc..580b255 100755
--- a/update-gluon.sh
+++ b/update-gluon.sh
@@ -19,7 +19,7 @@ git remote add upstream "$gluon_upstream_git_url"
 git fetch upstream --tags
 
 # we already have this branch - exit
-if ! git rev-parse --verify "$fork_newest_minor_branch" &> /dev/null; then
+if git rev-parse --verify "$fork_newest_minor_branch" &> /dev/null; then
     echo "Nothing todo, branch $fork_newest_minor_branch already exists"
     exit 1
 fi
-- 
GitLab