This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 997d1a4d5f ARROW-18221: [Release][Dev] Add support for customizing 
arrow-site dir (#14564)
997d1a4d5f is described below

commit 997d1a4d5fa410da45311f85ce3ce31511f89f75
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu Nov 3 06:23:02 2022 +0900

    ARROW-18221: [Release][Dev] Add support for customizing arrow-site dir 
(#14564)
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 dev/release/post-03-website.sh | 2 +-
 dev/release/post-08-docs.sh    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/release/post-03-website.sh b/dev/release/post-03-website.sh
index 5acd5a6dce..89fd2e27de 100755
--- a/dev/release/post-03-website.sh
+++ b/dev/release/post-03-website.sh
@@ -22,7 +22,7 @@ set -u
 
 SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
 ARROW_DIR="${SOURCE_DIR}/../.."
-ARROW_SITE_DIR="${ARROW_DIR}/../arrow-site"
+: ${ARROW_SITE_DIR:="${ARROW_DIR}/../arrow-site"}
 
 if [ "$#" -ne 2 ]; then
   echo "Usage: $0 <previous-version> <version>"
diff --git a/dev/release/post-08-docs.sh b/dev/release/post-08-docs.sh
index 0c05cf2192..6dce3ccc73 100755
--- a/dev/release/post-08-docs.sh
+++ b/dev/release/post-08-docs.sh
@@ -22,7 +22,7 @@ set -u
 
 SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
 ARROW_DIR="${SOURCE_DIR}/../.."
-ARROW_SITE_DIR="${ARROW_DIR}/../arrow-site"
+: ${ARROW_SITE_DIR:="${ARROW_DIR}/../arrow-site"}
 
 if [ "$#" -ne 2  ]; then
   echo "Usage: $0 <version> <previous_version>"

Reply via email to