Skip to content

Commit

Permalink
Fix location passed from python to cmake removing backslashes
Browse files Browse the repository at this point in the history
  • Loading branch information
lanierd-adsk committed Jan 22, 2024
1 parent 8139e6d commit 7e072cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def __init__(self, args):
if args.maya_location else None)

# MayaUsd Location
self.mayaUsdLocation = (os.path.abspath(args.mayausd_location)
self.mayaUsdLocation = (os.path.abspath(args.mayausd_location).replace("\\","/")
if args.mayausd_location else None)

# PXR USD Location
Expand Down

0 comments on commit 7e072cc

Please sign in to comment.