Skip to content

Commit

Permalink
Fixed|Builder|Windows: Checking state of produced packages
Browse files Browse the repository at this point in the history
The DirState utility class did not know how to handle Windows-style path
separators, causing the produced packages to not be copied to the
BuildMaster.
  • Loading branch information
skyjake committed Apr 16, 2013
1 parent 33482f4 commit 14107d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/builder/utils.py
Expand Up @@ -11,7 +11,7 @@
def omit_path(path, omitted):
if path.startswith(omitted):
path = path[len(omitted):]
if path[0] == '/': path = path[1:]
if path[0] == '/' or path[0] == '\\': path = path[1:]
return path


Expand Down

0 comments on commit 14107d0

Please sign in to comment.