7 lines
125 B
Batchfile
7 lines
125 B
Batchfile
|
|
@echo off
|
||
|
|
cd /d "%~dp0"
|
||
|
|
echo Starting Server Updates...
|
||
|
|
node --loader ts-node/esm index.ts
|
||
|
|
echo.
|
||
|
|
echo Process finished.
|
||
|
|
pause
|