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