mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-17 10:28:30 -05:00
12 lines
114 B
Bash
12 lines
114 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
cd ./site
|
|
|
|
if [ -f docs.zip ]; then
|
|
rm -rf docs.zip
|
|
fi
|
|
zip -r docs.zip ./
|