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 2021/01/21 20:19:45 UTC

[airflow] 20/44: Fix gpg verification command (#13035)

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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c03148bd0ecee96782111443e9abf42769bbd2da
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Sat Dec 12 19:30:09 2020 +0100

    Fix gpg verification command (#13035)
    
    (cherry picked from commit 825e9cb98411fe3999e79ee66d00e401fc4a91e0)
---
 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 2fb1294..1cd2f9c 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -379,7 +379,7 @@ Once you have the keys, the signatures can be verified by running this:
 ```shell script
 for i in *.asc
 do
-   echo "Checking $i"; gpg --verify `basename $i .asc`
+   echo "Checking $i"; gpg --verify $i
 done
 ```