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
isaak yansane-sisk
slapos.buildout
Commits
d0ef18f2
Commit
d0ef18f2
authored
Mar 13, 2009
by
Sidnei da Silva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- ``filepath`` needs to be quoted too, in redo_pyc
parent
eb19aadc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+1
-1
src/zc/buildout/windows.txt
src/zc/buildout/windows.txt
+1
-1
No files found.
src/zc/buildout/easy_install.py
View file @
d0ef18f2
...
...
@@ -1169,7 +1169,7 @@ def redo_pyc(egg):
args
=
[
_safe_arg
(
sys
.
executable
)]
if
__debug__
:
args
.
append
(
'-O'
)
args
.
extend
([
'-m'
,
'py_compile'
,
filepath
])
args
.
extend
([
'-m'
,
'py_compile'
,
_safe_arg
(
filepath
)
])
if
is_jython
:
subprocess
.
call
([
sys
.
executable
,
args
])
...
...
src/zc/buildout/windows.txt
View file @
d0ef18f2
...
...
@@ -5,7 +5,7 @@ Certain aspects of every software project are dependent on the
operating system used.
The same - of course - applies to zc.buildout.
To test that
w
indows doesn't get in the way, we'll test some system
To test that
W
indows doesn't get in the way, we'll test some system
dependent aspects.
The following recipe will create a read-only file which shutil.rmtree
can't delete.
...
...
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