mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
12 lines
160 B
Bash
Executable file
12 lines
160 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
test -e WORKSPACE || (
|
|
echo "Run from project root"
|
|
exit 1
|
|
)
|
|
|
|
rm -rf bazel-dist
|
|
bazel build -c opt dist
|
|
tar xvf bazel-bin/dist.tar
|