mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-05 11:10:03 +08:00
10 lines
120 B
Bash
10 lines
120 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname ${0})/.."
|
||
|
|
||
|
python3 -m pip install build
|
||
|
rm -rf dist/*
|
||
|
rm -rf build/*
|
||
|
python3 -m build
|