Skip to content

Commit 974ec7d

Browse files
committed
Fix missing path separator in prepare_resources-mac.py
1 parent 3374608 commit 974ec7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

NeuralAmpModeler/scripts/prepare_resources-mac.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ def main():
3131
+ "/Resources"
3232
)
3333
else:
34-
dst = (
35-
os.environ["TARGET_BUILD_DIR"]
36-
+ os.environ["UNLOCALIZED_RESOURCES_FOLDER_PATH"]
34+
dst = os.path.join(
35+
os.environ["TARGET_BUILD_DIR"],
36+
os.environ["UNLOCALIZED_RESOURCES_FOLDER_PATH"]
3737
)
3838

3939
if os.path.exists(dst) == False:

0 commit comments

Comments
 (0)