mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-28 16:49:26 -05:00
9 lines
98 B
Bash
Executable File
9 lines
98 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -d 'dist' ] ; then
|
|
rm -r dist
|
|
fi
|
|
if [ -d 'site' ] ; then
|
|
rm -r site
|
|
fi
|