TinyLifeExampleMod/Run.sh
2020-11-25 00:57:25 +01:00

12 lines
217 B
Bash

#!/bin/bash
GAME_DIR="path/to/Tiny Life"
# 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"