mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-05 05:29:09 +01:00
12 lines
No EOL
269 B
Bash
12 lines
No EOL
269 B
Bash
#!/bin/bash
|
|
GAME_DIR="path/to/Tiny Life"
|
|
|
|
# move to the script directory
|
|
cd "$(dirname "$0")"
|
|
# build the mod
|
|
dotnet build
|
|
# copy the mod to the mods folder
|
|
cp ./bin/Debug/netcoreapp3.0/* "$LOCALAPPDATA/Tiny Life/Mods" -r
|
|
# run the game
|
|
cd "$GAME_DIR"
|
|
"./Tiny Life.exe" |