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
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
slapos.buildout
Commits
eada97fd
Commit
eada97fd
authored
Oct 29, 2015
by
Reinout van Rees
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #280 from buildout/reinout-fix-279-on-windows
Fix #279 on windows
parents
28292163
928b07a4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
CHANGES.rst
CHANGES.rst
+3
-1
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+2
-0
No files found.
CHANGES.rst
View file @
eada97fd
...
@@ -4,7 +4,9 @@ Change History
...
@@ -4,7 +4,9 @@ Change History
2.4.7
(
unreleased
)
2.4.7
(
unreleased
)
==================
==================
-
Nothing
changed
yet
.
-
Fix
for
#
279.
Distutils
script
detection
previously
broke
on
windows
with
python
3
because
it
errored
on
``.
exe
``
files
.
[
reinout
]
2.4.6
(
2015
-
10
-
28
)
2.4.6
(
2015
-
10
-
28
)
...
...
src/zc/buildout/easy_install.py
View file @
eada97fd
...
@@ -904,6 +904,8 @@ def _detect_distutils_scripts(directory):
...
@@ -904,6 +904,8 @@ def _detect_distutils_scripts(directory):
marker
=
'EASY-INSTALL-DEV-SCRIPT'
marker
=
'EASY-INSTALL-DEV-SCRIPT'
scripts_found
=
[]
scripts_found
=
[]
for
filename
in
dir_contents
:
for
filename
in
dir_contents
:
if
filename
.
endswith
(
'.exe'
):
continue
filepath
=
os
.
path
.
join
(
directory
,
filename
)
filepath
=
os
.
path
.
join
(
directory
,
filename
)
if
not
os
.
path
.
isfile
(
filepath
):
if
not
os
.
path
.
isfile
(
filepath
):
continue
continue
...
...
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