mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
12 lines
238 B
Batchfile
Executable file
12 lines
238 B
Batchfile
Executable file
@echo off
|
|
|
|
if not exist WORKSPACE (
|
|
echo Run from project root
|
|
exit /b 1
|
|
)
|
|
|
|
rd /s /q bazel-dist
|
|
|
|
set BUILDARGS=-k -c opt dist --color=yes
|
|
call .\bazel build %BUILDARGS% || exit /b 1
|
|
tar xvf ..\bazel\anki\bin\dist.tar || exit /b 1
|