From 52e4dc8aeca257e04f66256a0d952f27df488575 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?=
 <nicolas.jeannerod@moduscreate.com>
Date: Thu, 27 Feb 2025 12:14:22 +0100
Subject: [PATCH] Make ShellCheck happy

---
 infra/machines.md.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/infra/machines.md.sh b/infra/machines.md.sh
index 4a2a5ca1..ea1b0208 100644
--- a/infra/machines.md.sh
+++ b/infra/machines.md.sh
@@ -31,6 +31,7 @@ for machine in $(echo "$vmOptions" | jq -r 'keys[]'); do
     proxmox=$(echo "$vmOptions" | jq -r ".$machine.proxmox")
     description=$(echo "$vmOptions" | jq -r ".$machine.description" | head -n 1)
 
+    # shellcheck disable=SC2016
     printf '[`%s`](./%s) | %s | %s\n' "$machine" "$machine" "$proxmox" "$description"
   fi
 done