mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
8 lines
98 B
Bash
Executable file
8 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
|