mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 20:57:13 -05:00
6 lines
97 B
Bash
Executable file
6 lines
97 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
rm -rf out/wheels/*
|
|
RELEASE=2 ./ninja wheels
|
|
echo "wheels are in out/wheels"
|