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 2019/01/21 19:43:17 UTC

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

Author: jailletc36
Date: Mon Jan 21 19:43:16 2019
New Revision: 1851766

URL: http://svn.apache.org/viewvc?rev=1851766&view=rev
Log:
Followup to r1827673.

Document the new 'version' parameter

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=1851766&r1=1851765&r2=1851766&view=diff
==============================================================================
--- httpd/site/trunk/tools/push.sh (original)
+++ httpd/site/trunk/tools/push.sh Mon Jan 21 19:43:16 2019
@@ -4,6 +4,7 @@
 #
 # USAGE: push.sh directory version dev|dist (scratch_dir)
 # directory: Directory to obtain release artifacts from
+# version: x.y.z (example 2.4.38)
 # dev|dist: If "dev", push to https://dist.apache.org/repos/dist/dev/httpd/ 
 #           If "dist", push to https://dist.apache.org/repos/dist/release/httpd
 # scratch_dir: Optional directory to use as the SVN clone and staging location.
@@ -16,7 +17,7 @@ set -x
 set -e
 
 usage () {
-  echo "USAGE: $0 directory dev|dist (scratch_dir)"
+  echo "USAGE: $0 directory version dev|dist (scratch_dir)"
   echo "WARNING: The scratch_dir will be purged if it exists"
   exit 1
 }