aboutsummaryrefslogtreecommitdiffstats
path: root/yarnw.bat
blob: 6b2385754581f7d5efdf12bada209e1c7174485f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
@rem SPDX-FileCopyrightText: 2024 The Refinery Authors <https://refinery.tools/>
@rem
@rem SPDX-License-Identifier: EPL-2.0

@echo off
setlocal
set script_dir=%~dp0
cmd /C %script_dir%gradlew.bat installPackageManager
set node_bin=%script_dir%.node
set Path=%node_bin%;%Path%
%node_bin%\yarn.CMD %*
set exit_code=%ERRORLEVEL%
endlocal & if %exit_code% neq 0 exit /b %exit_code%