-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL.bat
More file actions
26 lines (26 loc) · 763 Bytes
/
Copy pathINSTALL.bat
File metadata and controls
26 lines (26 loc) · 763 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
@echo off
setlocal
chcp 65001 >nul
title Neon CLI Kit - Install
rem === Neon CLI One-Click Kit : INSTALL ===
rem ASCII-only launcher. Korean UI lives in lib\install.ps1
set "HERE=%~dp0"
if not exist "%HERE%lib\install.ps1" (
echo.
echo [!] Cannot find: lib\install.ps1
echo Keep ALL files together - do not move this .bat out of the folder,
echo and unzip the whole kit including the lib folder.
echo.
pause
exit /b 1
)
powershell -NoProfile -ExecutionPolicy Bypass -File "%HERE%lib\install.ps1"
set "RC=%ERRORLEVEL%"
if not "%RC%"=="0" (
echo.
echo [!] Install ended with error code %RC%.
echo Take a screenshot of this window and ask for help,
echo or run the self-check launcher to see what is missing.
pause
)
endlocal