typer/scripts/clean.sh

9 lines
98 B
Bash
Raw Normal View History

2019-12-24 13:32:25 +01:00
#!/bin/sh -e
if [ -d 'dist' ] ; then
rm -r dist
fi
if [ -d 'site' ] ; then
rm -r site
fi