File: windows-setup-fix.bat

package info (click to toggle)
python-kubernetes 30.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,980 kB
  • sloc: python: 126,462; sh: 699; makefile: 46
file content (10 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
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 )