Skip to content

Commit 9d34570

Browse files
committed
lib/deployClosure: add missing second --no-check-sigs
1 parent cc0488d commit 9d34570

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func deployClosure(name string, spec JobSpec, outs map[string]string, op string)
7171
cmds = append(cmds, []string{"ssh", target, "sudo", path + "/bin/switch-to-configuration", op})
7272
}
7373

74-
if _, err := run("nix", "copy", "--to", "ssh-ng://"+target, path); err != nil {
74+
if _, err := run("nix", "copy", "--to", "ssh-ng://"+target, path, "--no-check-sigs"); err != nil {
7575
return fmt.Errorf("error copying to %s: %v", target, err)
7676
}
7777

0 commit comments

Comments
 (0)