Skip to content

Commit

Permalink
[17.01] Fix order of PATH when doing hacky Conda activating.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 15, 2017
1 parent 29d229c commit 97eaf40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/deps/resolvers/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def shell_commands(self, requirement):
# On explicit testing the only such requirement I am aware of is samtools - and it seems to work
# fine with just appending the PATH as done below. Other tools may require additional
# variables in the future.
return """export PATH=$PATH:'%s/bin' """ % (
return """export PATH='%s/bin':$PATH """ % (
self.environment_path,
)
else:
Expand Down

0 comments on commit 97eaf40

Please sign in to comment.