From 41e93d1ca99f8b8f3d4e08d3229c73001f39fac7 Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Mon, 24 Nov 2025 02:50:46 +0100 Subject: [PATCH] next --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0375bb4..6b102d2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -76,7 +76,7 @@ deploy:staging: set ftp:passive-mode true; set ftp:ssl-protect-data true; set ssl:verify-certificate no; - mirror -R --make-dirs --delete --exclude .gitkeep ${d}/ ${TARGET_PATH}${d}/; + mirror -R --delete --exclude .gitkeep ${d}/ ${TARGET_PATH}${d}/; bye " || { echo "❌ Upload für Verzeichnis '${d}' fehlgeschlagen."; exit 1; } done @@ -89,7 +89,7 @@ deploy:staging: set ftp:ssl-protect-data true; set ssl:verify-certificate no; lcd ${CONFIG_ENV_DIR}; - mirror -R --make-dirs --delete --exclude .gitkeep ./ ${TARGET_PATH}${CONFIG_BASE_DIR}/; + mirror -R --delete --exclude .gitkeep ./ ${TARGET_PATH}${CONFIG_BASE_DIR}/; bye " || { echo "❌ Upload für Config-Verzeichnis '${CONFIG_ENV_DIR}' fehlgeschlagen."; exit 1; } @@ -167,7 +167,7 @@ deploy:production: set ftp:passive-mode true; set ftp:ssl-protect-data true; set ssl:verify-certificate no; - mirror -R --make-dirs --delete --exclude .gitkeep ${d}/ ${TARGET_PATH}${d}/; + mirror -R --delete --exclude .gitkeep ${d}/ ${TARGET_PATH}${d}/; bye " || { echo "❌ Upload für Verzeichnis '${d}' fehlgeschlagen."; exit 1; } done @@ -179,7 +179,7 @@ deploy:production: set ftp:ssl-protect-data true; set ssl:verify-certificate no; lcd ${CONFIG_ENV_DIR}; - mirror -R --make-dirs --delete --exclude .gitkeep ./ ${TARGET_PATH}${CONFIG_BASE_DIR}/; + mirror -R --delete --exclude .gitkeep ./ ${TARGET_PATH}${CONFIG_BASE_DIR}/; bye " || { echo "❌ Upload für Config-Verzeichnis '${CONFIG_ENV_DIR}' fehlgeschlagen."; exit 1; }