Parcourir la source

curgitb : remove parenthesis

Jovian (Darkside) il y a 6 ans
Parent
commit
283a4b5b10
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      Useful/curgitb

+ 5 - 2
Useful/curgitb

@@ -3,5 +3,8 @@ current_branch=`git branch 2>&1`
 if [ "$current_branch" != 'fatal: not a git repository (or any of the parent directories): .git' ]
 then
 	current_branch=`echo "$current_branch" | grep \* | cut -d ' ' -f2`
-	echo "($current_branch)"
-fi
+	echo "$current_branch"
+	exit 0
+else
+	exit 1
+fi