mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 04:37:22 -05: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"
|