fix(module): prevent parameter expansion when generating pipeline config

This commit is contained in:
technofab 2025-02-27 11:19:50 +01:00
parent fa6c098e02
commit 36c4fc0fd6

View file

@ -166,7 +166,7 @@
# respectively)
toYaml = name: value:
pkgs.runCommand name {} ''
cat <<EOT >> $out
cat <<'EOT' > $out
${builtins.toJSON value}
EOT
'';