Skip to content

Commit

Permalink
Signed-off-by: Robert Minsk <[email protected]>
Browse files Browse the repository at this point in the history
fix: check for None when normalizing paths
  • Loading branch information
cfxegbert committed May 17, 2024
1 parent a13f7bb commit 5c6f6bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rez/resolved_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -1958,7 +1958,7 @@ def _execute(self, executor):
"""Bind various info to the execution context
"""
def normalized(path):
return executor.normalize_path(path)
return "None" if path is None else executor.normalize_path(path)

resolved_pkgs = self.resolved_packages or []
ephemerals = self.resolved_ephemerals or []
Expand Down

0 comments on commit 5c6f6bd

Please sign in to comment.