-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathstart.bat
More file actions
37 lines (31 loc) · 806 Bytes
/
start.bat
File metadata and controls
37 lines (31 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo off
where /q git
if errorlevel 1 (
echo You must install Git to proceed: https://git-scm.com
exit /b
)
where /q bun
if errorlevel 1 (
where /q node
if errorlevel 0 (
npm i -g bun
)
where /q bun
if errorlevel 1 (
echo You must install Bun to proceed: https://bun.sh
exit /b
)
)
@REM where /q java
@REM if errorlevel 1 (
@REM echo You must install Java 17 or newer to proceed: https://adoptium.net/
@REM exit /b
@REM )
@REM for /f tokens^=2-5^ delims^=.-_^" %%j in ('java -fullversion 2^>^&1') do set "jver=%%j%%k%"
@REM if %jver% lss 170 (
@REM echo You must install Java 17 or newer to proceed: https://adoptium.net/
@REM echo And it must be your primary Java version!
@REM exit /b
@REM )
bun install
bun run start.ts