mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
8 lines
138 B
Bash
Executable file
8 lines
138 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
rm -rf out/wheels/*
|
|
RELEASE=2 ./ninja wheels
|
|
(cd qt/release && ./build.sh)
|
|
echo "wheels are in out/wheels"
|