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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
0eef4307
Commit
0eef4307
authored
Apr 10, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed spurious failues due to differences in file-exists errors on windows and nix
parent
ef7ea0c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/zc/buildout/buildout.txt
src/zc/buildout/buildout.txt
+4
-4
No files found.
src/zc/buildout/buildout.txt
View file @
0eef4307
...
...
@@ -462,7 +462,7 @@ leave previously created paths in place:
recipe being used:
Traceback (most recent call last):
...
OSError:
[Errno 17] File exists: '/sample-buildout/bin'
OSError:
... exists...
We meant to create a directory bins, but typed bin. Now foo was
left behind.
...
...
@@ -494,7 +494,7 @@ If we fix the typo:
recipe being used:
Traceback (most recent call last):
...
OSError:
[Errno 17] File exists: '/sample-buildout/foo'
OSError:
... exists...
Now they fail because foo exists, because it was left behind.
...
...
@@ -571,7 +571,7 @@ When we rerun the buildout:
recipe being used:
Traceback (most recent call last):
...
OSError:
[Errno 17] File exists: '/sample-buildout/bin'
OSError:
... exists...
.. Wait for the file to really disappear. My linux is weird.
...
...
@@ -652,7 +652,7 @@ directories will be created:
recipe being used:
Traceback (most recent call last):
...
OSError:
[Errno 17] File exists: '/sample-buildout/bin'
OSError:
... exists...
>>> os.path.exists('foo')
False
...
...
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