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/09/11 19:10:14 UTC

[airflow] 01/01: Update installing-from-sources.rst

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

kaxilnaik pushed a commit to branch separate-source-installation
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 529376ca4483f67586c8ad0b0de97f494a2754f4
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sat Sep 11 20:09:44 2021 +0100

    Update installing-from-sources.rst
---
 docs/apache-airflow/installing-from-sources.rst | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/docs/apache-airflow/installing-from-sources.rst b/docs/apache-airflow/installing-from-sources.rst
index 45151b0..d555910 100644
--- a/docs/apache-airflow/installing-from-sources.rst
+++ b/docs/apache-airflow/installing-from-sources.rst
@@ -80,10 +80,10 @@ distribution directory and follow the below guide.
 
 Example:
 
-.. code-block:: bash
+.. code-block:: console
     :substitutions:
 
-    ❯ gpg --verify apache-airflow-|version|-source.tar.gz.asc apache-airflow-|version|-source.tar.gz
+    $ gpg --verify apache-airflow-|version|-source.tar.gz.asc apache-airflow-|version|-source.tar.gz
       gpg: Signature made Sat 11 Sep 12:49:54 2021 BST
       gpg:                using RSA key CDE15C6E4D3A8EC4ECF4BA4B6674E08AD7DE406F
       gpg:                issuer "kaxilnaik@apache.org"
@@ -98,12 +98,14 @@ Do not worry about the "not certified with a trusted signature" warning. Most of
 by release managers are self signed, that's why you get this warning. By importing the server in the
 previous step and importing it via ID from ``KEYS`` page, you know that this is a valid Key already.
 
-For SHA512 sum check, download the relevant sha512 and run the following:
+For SHA512 sum check, download the relevant ``sha512`` and run the following:
 
 .. code-block:: bash
 
     shasum -a 512 apache-airflow--********  | diff - apache-airflow--********.sha512
 
+The ``SHASUM`` of the file should match the one provided in ``.sha512`` file.
+
 Example:
 
 .. code-block:: bash