mirror of
https://github.com/harness/drone.git
synced 2025-05-09 00:09:49 +08:00
Add -r flag to enable recursive scp
This commit is contained in:
parent
c43f97e732
commit
87c762f222
@ -73,7 +73,7 @@ func (s *SSH) Write(f *buildfile.Buildfile) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if artifact {
|
if artifact {
|
||||||
scpCmd := "scp -o StrictHostKeyChecking=no -P %s ${ARTIFACT} %s"
|
scpCmd := "scp -o StrictHostKeyChecking=no -P %s -r ${ARTIFACT} %s"
|
||||||
f.WriteCmd(fmt.Sprintf(scpCmd, host[1], host[0]))
|
f.WriteCmd(fmt.Sprintf(scpCmd, host[1], host[0]))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ func TestSSHOneArtifact(t *testing.T) {
|
|||||||
t.Errorf("Expect script to contains artifact")
|
t.Errorf("Expect script to contains artifact")
|
||||||
}
|
}
|
||||||
|
|
||||||
if !strings.Contains(bscr, "scp -o StrictHostKeyChecking=no -P 2212 ${ARTIFACT} user@test.example.com:/srv/app/location") {
|
if !strings.Contains(bscr, "scp -o StrictHostKeyChecking=no -P 2212 -r ${ARTIFACT} user@test.example.com:/srv/app/location") {
|
||||||
t.Errorf("Expect script to contains scp command, got:\n%s", bscr)
|
t.Errorf("Expect script to contains scp command, got:\n%s", bscr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user