From 5453ad0b2b1c1c45991c365a67a5eca7fa71cd70 Mon Sep 17 00:00:00 2001 From: Logan Crandall Date: Thu, 23 May 2019 12:29:31 -0400 Subject: [PATCH] Replaced == with = == can cause issues in some terminals --- login.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/login.sh b/login.sh index b1c23da..a76131e 100755 --- a/login.sh +++ b/login.sh @@ -1,7 +1,7 @@ #!/bin/bash # you need httpie and jq (apt-get install httpie jq) -if [ "${BASH_SOURCE}" == "${0}" ];then +if [ "${BASH_SOURCE}" = "${0}" ];then echo "Exiting - you should run this script using 'source' to export your access token and ID." exit fi