[AIRFLOW-XXXX] Add -- to rm in install_released_airflow_version (#7548)

Adding this -- after rm -f helps in case when you have some weird
files that have spaces and -W in names.
This commit is contained in:
Tomek Urbaszek 2020-02-29 18:02:42 +01:00 коммит произвёл GitHub
Родитель 1b38f6d9b6
Коммит fae99e1c39
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -352,7 +352,7 @@ function send_kubernetes_logs_to_file_io() {
function install_released_airflow_version() {
pip uninstall apache-airflow -y || true
find /root/airflow/ -type f -print0 | xargs rm -f
find /root/airflow/ -type f -print0 | xargs rm -f --
if [[ ${1} == "1.10.2" || ${1} == "1.10.1" ]]; then
export SLUGIFY_USES_TEXT_UNIDECODE=yes
fi