typer/scripts/clean.sh
Sebastián Ramírez fad33cb49d 🔧 Add scripts
2019-12-24 13:32:25 +01:00

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