From e7e0d7113131562a1218b466f29963f0db152b61 Mon Sep 17 00:00:00 2001 From: Mayeu Date: Mon, 7 Jul 2025 23:10:24 +0200 Subject: [PATCH] Pass down $@ to the copy function in the container's publish command --- src/std/fwlib/blockTypes/containers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std/fwlib/blockTypes/containers.nix b/src/std/fwlib/blockTypes/containers.nix index 7bdcb043..49641be5 100644 --- a/src/std/fwlib/blockTypes/containers.nix +++ b/src/std/fwlib/blockTypes/containers.nix @@ -62,7 +62,7 @@ in '' {}) (mkCommand currentSystem "publish" "copy the image to its remote registry" [skopeo-nix2container] '' ${copyFn} - copy docker://${target.image.repo} + copy docker://${target.image.repo} "$@" '' { meta.image = target.image.name; inherit proviso;