diff --git a/scripts/windows-setup-fix.bat b/scripts/windows-setup-fix.bat new file mode 100644 index 0000000000..a11a75a637 --- /dev/null +++ b/scripts/windows-setup-fix.bat @@ -0,0 +1,10 @@ +REM Install python client in Windows. +REM Windows doesn't have symbolic link that this repo uses. +REM This batch script provides a workaround for symbolic link by copying the folders over. + +( python --version>nul 2>&1 && ( + echo "Python environment found." + ) + python --version + copy ..\kubernetes\base\* ..\kubernetes\ + cd .. && python setup.py install )