Compare commits
1 Commits
354f5e033e
...
41b3898d58
Author | SHA1 | Date | |
---|---|---|---|
41b3898d58 |
@ -38,7 +38,7 @@ if errorlevel 1 (
|
|||||||
:: Install Windows SDK
|
:: Install Windows SDK
|
||||||
:windows_sdk
|
:windows_sdk
|
||||||
set choice=
|
set choice=
|
||||||
set /p choice="Install Windows SDK [Y/n]?"
|
set /p choice="Install Windows SDK [Y/n]? "
|
||||||
if "%choice%"=="" goto windows_sdk_yes
|
if "%choice%"=="" goto windows_sdk_yes
|
||||||
if "%choice%"=="Y" goto windows_sdk_yes
|
if "%choice%"=="Y" goto windows_sdk_yes
|
||||||
if "%choice%"=="y" goto windows_sdk_yes
|
if "%choice%"=="y" goto windows_sdk_yes
|
||||||
@ -159,6 +159,21 @@ if errorlevel 1 exit /B 1
|
|||||||
if errorlevel 1 exit /B 1
|
if errorlevel 1 exit /B 1
|
||||||
:remote_ssh_keys_no
|
:remote_ssh_keys_no
|
||||||
|
|
||||||
|
:: Install conduit
|
||||||
|
:conduit
|
||||||
|
set choice=
|
||||||
|
set /p choice="Install conduit [Y/n]? "
|
||||||
|
if "%choice%"=="" goto conduit_yes
|
||||||
|
if "%choice%"=="Y" goto conduit_yes
|
||||||
|
if "%choice%"=="y" goto conduit_yes
|
||||||
|
if "%choice%"=="N" goto conduit_no
|
||||||
|
if "%choice%"=="n" goto conduit_no
|
||||||
|
echo invalid value: %choice%
|
||||||
|
goto conduit
|
||||||
|
:conduit_yes
|
||||||
|
"C:\Python27\Scripts\pip.exe" install git+ssh://git@github.com/kbenzie/conduit.git
|
||||||
|
:conduit_no
|
||||||
|
|
||||||
:remove_bootstrap
|
:remove_bootstrap
|
||||||
set choice=
|
set choice=
|
||||||
set /p choice="Remove bootstrap-Windows.cmd [y/N]? "
|
set /p choice="Remove bootstrap-Windows.cmd [y/N]? "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user