Skip to content

Commit

Permalink
fix: Problem on mac where there an error was still displayed in the i…
Browse files Browse the repository at this point in the history
…nspector even if the sh file contents are correct
  • Loading branch information
Cammin committed May 12, 2024
1 parent 056f4b3 commit e728f4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/LDtkUnity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

### Bug Fixes

* improve logs for problem with definition objects accessing a sprite for further investigation ([bd5617e](https://github.com/Cammin/LDtkToUnity/commit/bd5617e6c61bd1b3f9c8b683d1792e0d8329edc7))
* Improve logs for problem with definition objects accessing a sprite for further investigation ([bd5617e](https://github.com/Cammin/LDtkToUnity/commit/bd5617e6c61bd1b3f9c8b683d1792e0d8329edc7))

## [5.0.2](https://github.com/Cammin/LDtkToUnity/compare/5.0.1...5.0.2) (2024-05-08)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ public LDtkEditorCommandUpdater(string projectPath)
ExePath = GetExecutablePath();
Arg = $"\\\"{ProjectName}\\\"";
Command += $"{ExePath} \"{ProjectName}\"";

#if UNITY_EDITOR_OSX
Command += $" $1";
#endif
}

private string GetExecutablePath()
Expand Down

0 comments on commit e728f4d

Please sign in to comment.