This commit is contained in:
2025-11-20 23:05:17 +01:00
parent 9ea2a25b84
commit a6a49e4845
7 changed files with 4 additions and 8 deletions

View File

@@ -60,13 +60,13 @@ deploy:staging:
mirror -R --delete --exclude .gitkeep public/ ${FTP_PATH_STAGING}public/;
bye
"
echo "🔁 Sync partials/ → ${FTP_PATH_PROD}partials/"
echo "🔁 Sync partials/ → ${FTP_PATH_STAGING}partials/"
lftp -u "${FTP_USER}","${FTP_PASSWORD}" "${FTP_HOST}" -e "
set ftp:ssl-force true;
set ftp:passive-mode true;
set ftp:ssl-protect-data true;
set ssl:verify-certificate no;
mirror -R --delete --exclude .gitkeep partials/ ${FTP_PATH_PROD}partials/;
mirror -R --delete --exclude .gitkeep partials/ ${FTP_PATH_STAGING}partials/;
bye
"