Sfoglia il codice sorgente

Saving changes before switching to branch integrating-indoor-map

cdmoss 2 anni fa
parent
commit
b30d87c793
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      switchtobranch.sh

+ 2 - 2
switchtobranch.sh

@@ -29,10 +29,10 @@ fi
 echo "Switching to branch $1...";
 checkoutresult=`git checkout $1`;
 echo $checkoutresult
-if [ "$checkoutresult" == "Switched to branch $1" ]; then
+if [ "$checkoutresult" == "Switched to branch '$1'" ]; then
     echo "Switched to branch $1";
 fi
-if [ "$checkoutresult" != "Switched to branch" ]; then
+if [ "$checkoutresult" != "Switched to branch '$1'" ]; then
     echo "Failed to switch to branch $1";
     exit 1;
 fi