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) # respectively)
toYaml = name: value: toYaml = name: value:
pkgs.runCommand name {} '' pkgs.runCommand name {} ''
cat <<EOT >> $out cat <<'EOT' > $out
${builtins.toJSON value} ${builtins.toJSON value}
EOT EOT
''; '';