mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
also add assertions on library paths in bazel-targets.json GitOrigin-RevId: 5173172c1eb5ebf8b61b4ff3f74bab5a2e583f98
19 lines
327 B
Batchfile
Executable File
19 lines
327 B
Batchfile
Executable File
:<<"::CMDLITERAL"
|
|
@ECHO OFF
|
|
GOTO :CMDSCRIPT
|
|
::CMDLITERAL
|
|
|
|
set -eu
|
|
|
|
root="$(cd "$(dirname "$0")"; pwd)"
|
|
|
|
cd "$root"
|
|
exec /bin/bash "$root/bazel.cmd" build //... @rules_jvm//... @lib//...
|
|
:CMDSCRIPT
|
|
|
|
pushd "%~dp0"
|
|
call "%~dp0\bazel.cmd" build //... @rules_jvm//... @lib//...
|
|
set _exit_code=%ERRORLEVEL%
|
|
popd
|
|
EXIT /B %_exit_code%
|