void/resources/server/bin-dev/remote-cli/code.cmd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
270 B
Batchfile
Raw Permalink Normal View History

2024-09-11 02:37:36 +00:00
@echo off
setlocal
SET VSCODE_PATH=%~dp0..\..\..\..
2025-03-01 02:01:53 +00:00
SET VSCODE_DEV=1
2024-09-11 02:37:36 +00:00
FOR /F "tokens=* USEBACKQ" %%g IN (`where /r "%VSCODE_PATH%\.build\node" node.exe`) do (SET "NODE=%%g")
call "%NODE%" "%VSCODE_PATH%\out\server-cli.js" "Code Server - Dev" "" "" "code.cmd" %*
endlocal