17 lines
305 B
Batchfile
17 lines
305 B
Batchfile
@echo off
|
|
|
|
@REM change to ccurrent directory
|
|
cd %~f0\..\..\..\
|
|
|
|
@REM discord token
|
|
if not exist "token.txt" copy NUL "token.txt"
|
|
|
|
for /f %%i in ("token.txt") do set size=%%~zi
|
|
if %size% equ 0 (
|
|
set /p token="Enter your discord bot token: "
|
|
echo | set /p=%id% > "token.txt"
|
|
)
|
|
|
|
@REM run
|
|
npm install
|