Como executar o arquivo de script bash no Airflow

Eu tenho um script bash que cria um arquivo (se não existir) que quero executar no Airflow, mas quando tento, ele falha. Como eu faço isso?

#!/bin/bash
#create_file.sh

file=filename.txt

if [ ! -e "$file" ] ; then
    touch "$file"
fi

if [ ! -w "$file" ] ; then
    echo cannot write to $file
    exit 1
fi

e aqui está como eu estou chamando isso no Airflow:

create_command = """
 ./scripts/create_file.sh
"""
t1 = BashOperator(
        task_id= 'create_file',
        bash_command=create_command,
        dag=dag
)

lib/python2.7/site-packages/airflow/operators/bash_operator.py", line 83, in execute
    raise AirflowException("Bash command failed")
airflow.exceptions.AirflowException: Bash command failed

questionAnswers(1)

yourAnswerToTheQuestion