Skip to content

Commit 8cea232

Browse files
authored
Merge pull request #3 from julienkay/fix-osx-paths
Fix paths on macOS.
2 parents ca0dbfd + bcaecd8 commit 8cea232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Packages/com.doji.genesis/Editor/IOUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Genesis.Editor {
44
internal class IOUtils {
55

6-
private static readonly string StagingAreaFolder = @"Assets\Genesis Assets\";
6+
private static readonly string StagingAreaFolder = Path.Combine("Assets", "Genesis Assets");
77
public static string StagingAreaPath {
88
get {
99
if (!Directory.Exists(StagingAreaFolder)) {

0 commit comments

Comments
 (0)