potiuk commented on pull request #11487:
URL: https://github.com/apache/airflow/pull/11487#issuecomment-707700556


   Aaaaah ...
   
   ```
   -if [[ ${INSTALL_AIRFLOW_VERSION:=""} =~ 2.*  ]]; then
   +if [[ ${INSTALL_AIRFLOW_VERSION:=""} =~ ^2\..*  ]]; then
        echo
        echo "Installing regular packages for Airflow 2.0 but first installing 
prepared Airflow from master"
        echo
   @@ -34,7 +34,7 @@ if [[ ${INSTALL_AIRFLOW_VERSION:=""} =~ 2.*  ]]; then
        # Need to add excluded apache beam
        pip install apache-beam[gcp]
        echo
   -elif [[ ! ${INSTALL_AIRFLOW_VERSION:=""} =~ 1.10* ]]; then
   +elif [[ ! ${INSTALL_AIRFLOW_VERSION:=""} =~ ^1\.10\..* ]]; then
   
   ````
   2.* matched 1.10.12 ... Those are regexp :facepalm: 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to