Skip to content

Commit

Permalink
Fix last remaining uses of %(dirsep)s.
Browse files Browse the repository at this point in the history
whitequark committed Mar 26, 2018
1 parent 62b56f7 commit bbbba48
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions master.cfg
Original file line number Diff line number Diff line change
@@ -143,7 +143,7 @@ def addCondaBuildSteps(factory, project, package, is_xilinx=False, test=True, ch
if channel:
build_cmd += ['--channel',
WithProperties('http://conda.anaconda.org/m-labs/channel/' + channel)]
build_cmd.append(WithProperties('%(dirsep)s'.join(['conda', package])))
build_cmd.append(WithProperties('conda/', package))
if not test:
build_cmd.append('--no-test')

@@ -293,8 +293,7 @@ def addSphinxDocumentSteps(factory, source_path, target_path):
factory.addStep(
DirectoryUpload(
name = 'upload_doc',
slavesrc = WithProperties('%(dirsep)s'.
join([source_path, '_build', 'html'])),
slavesrc = WithProperties(source_path + '/_build/html'),
masterdest = target_path,
locks = default_locks))

0 comments on commit bbbba48

Please sign in to comment.