mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

If you were using the optional Rust worker support, please see the change to development.md
12 lines
166 B
Bash
Executable file
12 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
test -e WORKSPACE || (
|
|
echo "Run from project root"
|
|
exit 1
|
|
)
|
|
|
|
rm -rf bazel-dist
|
|
bazel build --config opt dist
|
|
tar xvf bazel-bin/dist.tar
|