Skip to content

Commit

Permalink
containers: wrap extra args in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ento committed Dec 26, 2024
1 parent 884db6f commit 7847d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/containers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ let
echo "Copying container $container to $dest"
echo
${nix2container.skopeo-nix2container}/bin/skopeo --insecure-policy copy "nix:$container" "$dest" ''${args[@]}
${nix2container.skopeo-nix2container}/bin/skopeo --insecure-policy copy "nix:$container" "$dest" "''${args[@]}"
'';
containerOptions = types.submodule ({ name, config, ... }: {
options = {
Expand Down

0 comments on commit 7847d8c

Please sign in to comment.