dokuwiki-sandstorm/bin/cleanup_dokuwiki

9 lines
152 B
Bash
Executable File

#!/bin/bash
cd dokuwiki
git reset --hard
git clean -dxf
find . -name '*.orig' -exec rm -Rf {} \;
echo "Dokuwiki cleaned up for another build attempt"