mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-05 05:29:09 +01:00
11 lines
286 B
Batchfile
11 lines
286 B
Batchfile
|
@echo off
|
||
|
rem move to the script directory
|
||
|
cd /d "%~dp0"
|
||
|
rem build the mod
|
||
|
dotnet build
|
||
|
rem copy the mod to the mods folder
|
||
|
robocopy ./bin/Debug/netcoreapp3.0/ "%LOCALAPPDATA%/Tiny Life/Mods" /e
|
||
|
rem run the game
|
||
|
set /p dir=<"%LOCALAPPDATA%/Tiny Life/GameDir"
|
||
|
cd /d %dir%
|
||
|
"Tiny Life.exe"
|