blob: 389a79cb848dfdfbcba5740394ada84f845314c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff --git a/nix/nix.go b/nix/nix.go
index bb63870..7fe04aa 100644
--- a/nix/nix.go
+++ b/nix/nix.go
@@ -347,6 +347,7 @@ func Push(ctx *ssh.SSHContext, host Host, paths ...string) (err error) {
options := mkOptions(host)
for _, path := range paths {
args := []string{
+ "-v",
"copy",
path,
"--to", "ssh://" + userArg + host.TargetHost + keyArg,
|