Skip to content

Commit

Permalink
Use set instead of prepend_path to avoid a : at the end of the path (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Jul 3, 2024
1 parent dc0b2bc commit ccaa1af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cldconfig/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def cmake_args(self):
return args

def setup_run_environment(self, env):
env.prepend_path("CLDCONFIG", self.prefix)
env.set("CLDCONFIG", self.prefix)
2 changes: 1 addition & 1 deletion packages/fcc-config/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ def cmake_args(self):
return args

def setup_run_environment(self, env):
env.prepend_path("FCCCONFIG", self.prefix)
env.set("FCCCONFIG", self.prefix)

0 comments on commit ccaa1af

Please sign in to comment.