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:
authorMarc Delisle <marc@infomarc.info>2014-03-07 00:29:15 +0400
committerMarc Delisle <marc@infomarc.info>2014-03-07 00:29:15 +0400
commita73947fba71d64a84b3391c916d6e553fa261123 (patch)
treeb0c59a23884879c2a662e8b993f5a724cc6b08e0 /scripts
parent386c0eff15eb5ef33280dcb154c2d5930450ebbb (diff)
Fix "missing operand" complain
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'scripts')
-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