From 22db50ec7efdd30efbf2ed741b7f5b5284d347e0 Mon Sep 17 00:00:00 2001 From: sai-adarsh Date: Thu, 21 Feb 2019 01:12:15 +0530 Subject: [PATCH] Initial Commit Initial Commit --- scripts/windows-setup-fix.bat | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/windows-setup-fix.bat diff --git a/scripts/windows-setup-fix.bat b/scripts/windows-setup-fix.bat new file mode 100644 index 0000000000..cf18605988 --- /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 ) \ No newline at end of file