Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/create-release.sh')
-rwxr-xr-xscripts/create-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index 642b0e9e2b..104077d677 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -113,7 +113,7 @@ LC_ALL=C date -u > RELEASE-DATE-${version}
echo "* Generating documentation"
if [ -f doc/conf.py ] ; then
LC_ALL=C make -C doc html
- find doc -name '*.pyc' | xargs rm
+ find doc -name '*.pyc' -print0 | xargs -0 -r rm -f
else
LC_ALL=C w3m -dump Documentation.html > Documentation.txt
fi