Fix: copy instead of move
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9c0508c2c3
commit
f02931d16a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue