From 2b087414ba593290a6b48c90458162d261e85366 Mon Sep 17 00:00:00 2001 From: BeauTroll <-> Date: Tue, 16 Dec 2025 06:07:18 +0100 Subject: [PATCH] Fix environment variable interpolation syntax MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change {BORG_REPO} to ${BORG_REPO} for correct Borgmatic interpolation - The $ prefix is required for environment variable substitution - Fixes "Invalid placeholder" error when running borgmatic 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yaml b/config.yaml index 491efc6..06af371 100644 --- a/config.yaml +++ b/config.yaml @@ -5,7 +5,7 @@ # Repository Borg - utilise la variable d'environnement repositories: - - path: "{BORG_REPO}" + - path: "${BORG_REPO}" label: serveur # Chemins sources à sauvegarder