Fix: copy instead of move
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dorian Zedler 2022-08-06 21:49:35 +02:00
parent 9c0508c2c3
commit f02931d16a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ func copyFiles(args Args) error {
return err
}
cmd := exec.Command("mv", folder, "/tmp/pages")
cmd := exec.Command("cp", "-r", folder, "/tmp/pages")
if err := execute(cmd); err != nil {
return err
}