dokuwiki-sandstorm/bin/cleanup_dokuwiki

9 lines
152 B
Plaintext
Raw Normal View History

2020-06-13 21:49:54 +00:00
#!/bin/bash
cd dokuwiki
git reset --hard
git clean -dxf
find . -name '*.orig' -exec rm -Rf {} \;
echo "Dokuwiki cleaned up for another build attempt"