9 lines
152 B
Bash
Executable File
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"
|