You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2022/05/02 11:04:51 UTC

[arrow] branch master updated: ARROW-16347: [Release] Escape backtick in verification script

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

kszucs 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 22a18852ee ARROW-16347: [Release] Escape backtick in verification script
22a18852ee is described below

commit 22a18852ee7480f67ed173dfee05c5ccb453c6ca
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Mon May 2 13:04:37 2022 +0200

    ARROW-16347: [Release] Escape backtick in verification script
    
    Closes #13044 from kszucs/escape-backtick-verification
    
    Lead-authored-by: Krisztián Szűcs <sz...@gmail.com>
    Co-authored-by: Raúl Cumplido <ra...@gmail.com>
    Signed-off-by: Krisztián Szűcs <sz...@gmail.com>
---
 dev/release/verify-release-candidate.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index ccd75ed2e0..b62fbeec52 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -469,7 +469,7 @@ maybe_setup_conda() {
     conda activate $env
   elif [ ! -z ${CONDA_PREFIX} ]; then
     echo "Conda environment is active despite that USE_CONDA is set to 0."
-    echo "Deactivate the environment using `conda deactive` before running the verification script."
+    echo "Deactivate the environment using \`conda deactivate\` before running the verification script."
     return 1
   fi
 }