Skip to content

Commit

Permalink
Ensure quotes are removed and don't inadvertently add whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclary committed Jan 25, 2024
1 parent befa93b commit 79609ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spyder/plugins/updatemanager/scripts/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
:: Create variables from arguments
:parse
IF "%~1"=="" GOTO endparse
IF "%~1"=="-p" set prefix=%2 & SHIFT
IF "%~1"=="-i" set install_exe=%2 & SHIFT
IF "%~1"=="-c" set conda=%2 & SHIFT
IF "%~1"=="-v" set spy_ver=%2 & SHIFT
IF "%~1"=="-p" set prefix=%~2& SHIFT
IF "%~1"=="-i" set install_exe=%~2& SHIFT
IF "%~1"=="-c" set conda=%~2& SHIFT
IF "%~1"=="-v" set spy_ver=%~2& SHIFT
SHIFT
GOTO parse
:endparse
Expand Down

0 comments on commit 79609ab

Please sign in to comment.