-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Fixes Setup.py error on Windows #676 #734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
4a3c232
769ef0e
51e0aab
afb9158
6a6d880
357f23e
37fcd69
a7b035f
e5bfc75
f2dacbf
13f3391
51ae885
3fb317f
b2e7232
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if ! [ -x "$(command -v python)" ]; | ||
then | ||
echo "Python environment notfound.." | ||
else | ||
echo "Python environment found.." | ||
fi | ||
python --version | ||
cp -R ../kubernetes/base/* ../kubernetes/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what's the reason to do the 'cp -R' above? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
"When we clone submodule with git the folders in the /kubernetes/base is supposed to be symbolically linked in the /kubernetes directory. In Windows this is not done. For a Windows developer, we’ll need to have a script copying all the base/* folders into */. " ^ is what @micw523 requested in his issue. so 'cp -R' does the job.
Sai-Adarsh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
cd ../ && python setup.py install | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check windows batch scripting syntax for
if