From b1b9c3d20fd395d7b92cd422946b4365ca66e447 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Wed, 5 Feb 2025 21:20:34 +0100 Subject: [PATCH] Allow to pass FTP password via env var for deployment --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a3bc3fb..90f9571 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ start: pnpm dlx serve src -# Require a password. Not versioned. +# Require a password. Not versioned. See Bitwarden. deploy: - lftp -e "mirror -R ./ ftp://dhufpvp@ftp.cluster029.hosting.ovh.net/www" -u dhufpvp \ No newline at end of file + lftp -e "mirror -R ./ ftp://dhufpvp@ftp.cluster029.hosting.ovh.net/www" -u dhufpvp,${FTP_PASS} \ No newline at end of file