summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/docs/clean
blob: c0525525c9437d3921758a6e34845a60a9cf8c69 (plain)
1
2
3
4
5
6
7
#!/bin/sh -e

basedir="docs/manual"

echo "Cleaning $basedir..." 
if [ -d $basedir ]; then rm -Rf $basedir; fi
echo "Done."