Skip to content

Commit

Permalink
fix "UE4" vs "UE" directory name bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeroberts3000 committed Jul 21, 2023
1 parent 3e37f1d commit 4e70d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/run_executable.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
if sys.platform == "win32":
paks_dir = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(args.executable)), "..", "..", "Content", "Paks"))
elif sys.platform == "darwin":
paks_dir = os.path.realpath(os.path.join(args.executable, "Contents", "UE4", "SpearSim", "Content", "Paks"))
paks_dir = os.path.realpath(os.path.join(args.executable, "Contents", "UE", "SpearSim", "Content", "Paks"))
elif sys.platform == "linux":
paks_dir = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(args.executable)), "SpearSim", "Content", "Paks"))
else:
Expand Down

0 comments on commit 4e70d6e

Please sign in to comment.