Merge pull request #544 from mitchellh/fix#500

builder/amazon/chroot: use --remove-destination for cp
This commit is contained in:
Mitchell Hashimoto 2013-10-18 01:17:47 -07:00
commit 9699c1bb37
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ func (s *StepCopyFiles) Run(state multistep.StateBag) multistep.StepAction {
chrootPath := filepath.Join(mountPath, path)
log.Printf("Copying '%s' to '%s'", path, chrootPath)
cmdText, err := wrappedCommand(fmt.Sprintf("cp %s %s", path, chrootPath))
cmdText, err := wrappedCommand(fmt.Sprintf("cp --remove-destination %s %s", path, chrootPath))
if err != nil {
err := fmt.Errorf("Error building copy command: %s", err)
state.Put("error", err)