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