diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-10-19 22:53:49 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-10-19 22:53:49 -0400 |
commit | 524c56ee757464b5785c4d704d4da1862b173db9 (patch) | |
tree | 3335ca2e8b60810293744f10948322132d5c3e3c /build/smapi.targets | |
parent | e3d9894bf353197169fc3e84c973e07cfb5f3aae (diff) | |
download | SMAPI-524c56ee757464b5785c4d704d4da1862b173db9.tar.gz SMAPI-524c56ee757464b5785c4d704d4da1862b173db9.tar.bz2 SMAPI-524c56ee757464b5785c4d704d4da1862b173db9.zip |
correct home paths on Linux/Mac
Diffstat (limited to 'build/smapi.targets')
-rw-r--r-- | build/smapi.targets | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/smapi.targets b/build/smapi.targets index 7d512a29..2ca7a829 100644 --- a/build/smapi.targets +++ b/build/smapi.targets @@ -5,10 +5,10 @@ <GamePath Condition="!Exists('$(GamePath)')">$(STARDEWVALLEY_DIR)</GamePath> <!-- Linux --> - <GamePath Condition="!Exists('$(GamePath)')">~/.local/share/Steam/steamapps/common/Stardew Valley</GamePath> + <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/.local/share/Steam/steamapps/common/Stardew Valley</GamePath> <!-- Mac --> - <GamePath Condition="!Exists('$(GamePath)')">~/Library/Application Support/Steam/steamapps/common/Stardew Valley/Contents/MacOS</GamePath> + <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/Library/Application Support/Steam/steamapps/common/Stardew Valley/Contents/MacOS</GamePath> <!-- Windows --> <GamePath Condition="!Exists('$(GamePath)')">C:\Program Files (x86)\GalaxyClient\Games\Stardew Valley</GamePath> |