mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 08:34:16 +01:00
176e12ff04
* Improves TGUI tooling * CI Test * Update .eslintrc.yml * CI prettier * That works
10 lines
386 B
Batchfile
10 lines
386 B
Batchfile
@echo off
|
|
rem Copyright (c) 2020 Aleksej Komarov
|
|
rem SPDX-License-Identifier: MIT
|
|
call powershell.exe -NoLogo -ExecutionPolicy Bypass -File "%~dp0\tgui_.ps1" --prettier %*
|
|
rem Pause if launched in a separate shell unless initiated from powershell
|
|
echo %PSModulePath% | findstr %USERPROFILE% >NUL
|
|
if %errorlevel% equ 0 exit 0
|
|
echo %cmdcmdline% | find /i "/c"
|
|
if %errorlevel% equ 0 pause
|