From 8b1484a6d358662bcb0ea25e39e29a676a0a019f Mon Sep 17 00:00:00 2001 From: JoseluCross Date: Fri, 1 Jul 2016 19:55:30 +0200 Subject: [PATCH] Repair line 87 ( before =s, now == ) --- jka-toolkit/gitdit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jka-toolkit/gitdit b/jka-toolkit/gitdit index ff557f4..d1658dc 100755 --- a/jka-toolkit/gitdit +++ b/jka-toolkit/gitdit @@ -2,7 +2,7 @@ # gitdit, a dialog interface to manage git repositories # Author: JKA Network - contacto@jkanetwork.com -VERSION="1.0.0" +VERSION="1.0.1" #First check if the user is in a git repository preOption=$(git status 2>/dev/stdout | sed -n 1p | cut -f2 -d" ") if [ $preOption = "Not" ];then #When it isn't only it can do git clone @@ -84,7 +84,7 @@ if [ ! -z $gitopt ];then #No canceled error=0 #If 1 aux is yet in lista array for (( i=0;i<${#lista[@]} && error==0;i++ )) do - if [ $aux =s ${lista[$i]} -o $aux = $actual2 ];then + if [ $aux == ${lista[$i]} -o $aux = $actual2 ];then error=1 fi done