We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7d6329 commit b4de6caCopy full SHA for b4de6ca
update_to_latest.cmd
@@ -37,12 +37,12 @@ echo Stashing local changes and pulling latest update...
37
call git stash
38
call git pull
39
set /P restore="Do you want to restore changes you made before updating? (Y/N): "
40
-IF "%restore%" == "N" (
+IF /I "%restore%" == "N" (
41
echo Removing changes please wait...
42
call git stash drop
43
echo Changes removed, press any key to continue...
44
pause >nul
45
-) ELSE IF "%restore%" == "Y" (
+) ELSE IF /I "%restore%" == "Y" (
46
echo Restoring changes, please wait...
47
call git stash pop --quiet
48
echo Changes restored, press any key to continue...
0 commit comments