mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
5 lines
213 B
Batchfile
Executable file
5 lines
213 B
Batchfile
Executable file
@echo off
|
|
set CARGO_TARGET_DIR=%~dp0\..\out\rust
|
|
REM separate build+run steps so build env doesn't leak into subprocesses
|
|
cargo build -p runner --release || exit /b 1
|
|
out\rust\release\runner build %* || exit /b 1
|