Skip to content

Commit

Permalink
fix(manifest): only escape annotation values and not keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkolenz committed Nov 19, 2024
1 parent 3e2f75c commit 3f21d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker-manifest.nix
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ let
);

annotationFlags = lib.mapAttrsToList (
key: value: ''--annotation "${key}=${lib.escape [ "\"" ] value}"''
key: value: ''--annotation ${key}="${lib.escape [ "\"" ] value}"''
) _annotations;

_registries = lib.filterAttrs (key: value: lib.flocken.isNotEmpty value && value.enable == true) (
Expand Down

0 comments on commit 3f21d54

Please sign in to comment.