You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by pq...@apache.org on 2006/07/20 01:35:31 UTC

svn commit: r423658 - /apr/dist/trunk/tools/release.sh

Author: pquerna
Date: Wed Jul 19 16:35:31 2006
New Revision: 423658

URL: http://svn.apache.org/viewvc?rev=423658&view=rev
Log:
As noticed by maxb for Subversion's RC, LastChangedDate and other properties change their values based on the timezone of the user doing the export.  Force everything in this script to use a UTC Timezone to keep timezones consistent between releases.

Modified:
    apr/dist/trunk/tools/release.sh

Modified: apr/dist/trunk/tools/release.sh
URL: http://svn.apache.org/viewvc/apr/dist/trunk/tools/release.sh?rev=423658&r1=423657&r2=423658&view=diff
==============================================================================
--- apr/dist/trunk/tools/release.sh (original)
+++ apr/dist/trunk/tools/release.sh Wed Jul 19 16:35:31 2006
@@ -28,6 +28,10 @@
   exit 1
 fi
 
+# This forces all exported releases to be on the same timezone
+# when SVN props are used inside files.
+TZ=UTC
+
 PROJECT=$1
 TAG=$2
 SIGNING_USER=$3