From 92d7f28fcb6e89cc5a1adc5d4dcf26c4074c9a2c Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 22 Apr 2021 20:01:01 +0200 Subject: [PATCH] fixed linux run script --- Run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Run.sh b/Run.sh index f98de87..07a7f4f 100644 --- a/Run.sh +++ b/Run.sh @@ -4,8 +4,8 @@ cd "$(dirname "$0")" # build the mod dotnet build # copy the mod to the mods folder -cp ./bin/Debug/net5.0/* "$LOCALAPPDATA/Tiny Life/Mods" -r +cp ./bin/Debug/net5.0/* "$HOME/.local/share/Tiny Life/Mods" -r # run the game -dir=$(<"$LOCALAPPDATA/Tiny Life/GameDir") +dir=$(<"$HOME/.local/share/Tiny Life/GameDir") cd $dir -"./Tiny Life.exe" \ No newline at end of file +"./Tiny Life" \ No newline at end of file