You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/21 09:50:11 UTC

[airflow] branch master updated: Fix git archive command in Release Management guide (#12526)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 287ed49  Fix git archive command in Release Management guide (#12526)
287ed49 is described below

commit 287ed4926bd28c878809ee46b14b00c310b1754a
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sat Nov 21 09:48:27 2020 +0000

    Fix git archive command in Release Management guide (#12526)
    
    There was a trailing back-tick which I found when cutting 1.10.13rc1
---
 dev/README_RELEASE_AIRFLOW.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index edfc54f..615687c 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -83,7 +83,7 @@ The Release Candidate artifacts we vote upon should be the exact ones we vote ag
 - Tarball the repo
 
     ```shell script
-    git archive --format=tar.gz ${VERSION} --prefix=apache-airflow-${VERSION}/ -o apache-airflow-${VERSION}-source.tar.gz`
+    git archive --format=tar.gz ${VERSION} --prefix=apache-airflow-${VERSION}/ -o apache-airflow-${VERSION}-source.tar.gz
     ```