You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2021/06/02 11:25:38 UTC

svn commit: r1890387 - /httpd/site/trunk/tools/push.sh

Author: jailletc36
Date: Wed Jun  2 11:25:38 2021
New Revision: 1890387

URL: http://svn.apache.org/viewvc?rev=1890387&view=rev
Log:
Improve compatibility with non-English system

(will be tested on next release, but already validated on announce.sh for date formating, and tested by hand for 'svn' outputs)

Modified:
    httpd/site/trunk/tools/push.sh

Modified: httpd/site/trunk/tools/push.sh
URL: http://svn.apache.org/viewvc/httpd/site/trunk/tools/push.sh?rev=1890387&r1=1890386&r2=1890387&view=diff
==============================================================================
--- httpd/site/trunk/tools/push.sh (original)
+++ httpd/site/trunk/tools/push.sh Wed Jun  2 11:25:38 2021
@@ -16,6 +16,9 @@ set -x
 #Bail when non-zero return codes are encountered
 set -e
 
+#Make sure English is used when formating dates
+export LANG=en_US.UTF-8
+
 usage () {
   echo "USAGE: $0 directory version dev|dist (scratch_dir)"
   echo "WARNING: The scratch_dir will be purged if it exists"