From e736c2d1545501d6998a02380778574ae159a203 Mon Sep 17 00:00:00 2001 From: Gleb <52084975+MAGLeb@users.noreply.github.com> Date: Wed, 17 Aug 2022 18:16:48 +0400 Subject: [PATCH] Update tutorial.rst (#25759) Command: `curl -LfO 'https://airflow.apache.org/docs/apache-airflow/stable/docker-compose.yaml'` to download the docker-compose.yaml file was with wrong options. --- docs/apache-airflow/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/tutorial.rst b/docs/apache-airflow/tutorial.rst index 7e641ba22906..e415cd1c61af 100644 --- a/docs/apache-airflow/tutorial.rst +++ b/docs/apache-airflow/tutorial.rst @@ -403,7 +403,7 @@ The steps below should be sufficient, but see the quick-start documentation for .. code-block:: bash # Download the docker-compose.yaml file - curl -Lf0 'https://airflow.apache.org/docs/apache-airflow/stable/docker-compose.yaml' + curl -LfO 'https://airflow.apache.org/docs/apache-airflow/stable/docker-compose.yaml' # Make expected directories and set an expected environment variable mkdir -p ./dags ./logs ./plugins