Merge pull request #766 from Sai-Adarsh/master

Fixes Setup.py error on Windows #676
This commit is contained in:
Kubernetes Prow Robot 2019-02-20 13:45:37 -08:00 committed by GitHub
commit fcda6fe96b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 )