Procházet zdrojové kódy

Saving changes before switching to branch integrating-indoor-map

cdmoss před 2 roky
rodič
revize
b30d87c793
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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