Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Yusei Tahara
slapos.buildout
Commits
90bc44f9
Commit
90bc44f9
authored
Aug 22, 2012
by
Alex Clark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"Fix" another Windows regression
parent
4f4e1ba2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+6
-4
No files found.
src/zc/buildout/easy_install.py
View file @
90bc44f9
...
...
@@ -1182,10 +1182,12 @@ def develop(setup, dest,
if
log_level
<
logging
.
DEBUG
:
logger
.
debug
(
"in: %r
\
n
%s"
,
directory
,
' '
.
join
(
args
))
p
=
subprocess
.
Popen
(
[
_safe_arg
(
executable
)]
+
args
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
if
p
.
wait
()
>
0
:
raise
zc
.
buildout
.
UserError
(
"Installing develop egg failed: %s"
%
p
.
stderr
.
read
())
# XXX It looks like someone tried to get clever with "bad" develop eggs, but this
# currently fails on Windows
#p = subprocess.Popen(
# [_safe_arg(executable)] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
#if p.wait() > 0:
# raise zc.buildout.UserError("Installing develop egg failed: %s" % p.stderr.read())
return
_copyeggs
(
tmp3
,
dest
,
'.egg-link'
,
undo
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment