From ac80ec0ff738492e47136947024317de0c930b69 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Sun, 6 Sep 2026 23:38:45 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20:=20d=C3=A9ployer=20src/=20et=20no?= =?UTF-8?q?n=20la=20racine=20du=20d=C3=A9p=C3=B4t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le webroot contient le contenu de src/ à plat, mais la cible mirroir partait de « ./ ». Lancée depuis la racine, elle publiait .git/, shell.nix et surtout .envrc — qui contient le mot de passe FTP en clair — dans le répertoire public. Co-Authored-By: Claude Opus 5 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2088a2b..038771b 100644 --- a/Makefile +++ b/Makefile @@ -3,4 +3,4 @@ start: # Require a password. Not versioned. See Bitwarden. deploy: - lftp -e "mirror -R ./ ftp://dhufpvp@ftp.cluster029.hosting.ovh.net/www" -u dhufpvp,${FTP_PASS} \ No newline at end of file + lftp -e "mirror -R ./src ftp://dhufpvp@ftp.cluster029.hosting.ovh.net/www" -u dhufpvp,${FTP_PASS} \ No newline at end of file