You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/12/09 19:31:22 UTC

[airflow] branch v2-0-test updated: Array declaration cannot be done inside function for DockerHub

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

potiuk pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v2-0-test by this push:
     new 442f630  Array declaration cannot be done inside function for DockerHub
442f630 is described below

commit 442f63057231a9cfaa3a232dd9e9b6073f721b94
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Wed Dec 9 20:20:34 2020 +0100

    Array declaration cannot be done inside function for DockerHub
    
    For version of bash in DockerHub the arrays should be declared
    outside of functions to work.
    
    (cherry picked from commit fa580a50d9f18760f1f224a48681c8f75362ef07)
---
 scripts/ci/libraries/_initialization.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh
index 26dd9b9..097b960 100644
--- a/scripts/ci/libraries/_initialization.sh
+++ b/scripts/ci/libraries/_initialization.sh
@@ -26,6 +26,7 @@ CURRENT_MYSQL_VERSIONS=()
 CURRENT_KIND_VERSIONS=()
 CURRENT_HELM_VERSIONS=()
 ALL_PYTHON_MAJOR_MINOR_VERSIONS=()
+INSTALLED_PROVIDERS=()
 
 # Creates directories for Breeze
 function initialization::create_directories() {