This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 8e387aa Breeze was slightly too chatty when there was no dirs created
(#10346)
8e387aa is described below
commit 8e387aaa7a56937e01ad1ff7b56f011ab7b51521
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Aug 15 20:32:34 2020 +0200
Breeze was slightly too chatty when there was no dirs created (#10346)
---
breeze | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/breeze b/breeze
index c122b17..a405621 100755
--- a/breeze
+++ b/breeze
@@ -56,9 +56,9 @@ function setup_default_breeze_variables() {
export TMP_DIR="${AIRFLOW_SOURCES}/tmp"
# Create those folders above in case they do not exist
- mkdir -pv "${BUILD_CACHE_DIR}"
- mkdir -pv "${TMP_DIR}"
- mkdir -pv "${FILES_DIR}"
+ mkdir -p "${BUILD_CACHE_DIR}" >/dev/null
+ mkdir -p "${TMP_DIR}" >/dev/null
+ mkdir -p "${FILES_DIR}" >/dev/null
# load all the common functions here - those are the functions that are
shared between Breeze
# and CI scripts (CI scripts do not use Breeze as execution environment)