comment, formatting.
This commit is contained in:
parent
a15f629f4f
commit
5f19648268
|
@ -166,7 +166,8 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
|
|||
ec2conn := ec2.New(auth, region)
|
||||
|
||||
wrappedCommand := func(command string) *exec.Cmd {
|
||||
wrapped, err := b.config.tpl.Process(b.config.CommandWrapper, &wrappedCommandTemplate{
|
||||
wrapped, err := b.config.tpl.Process(
|
||||
b.config.CommandWrapper, &wrappedCommandTemplate{
|
||||
Command: command,
|
||||
})
|
||||
if err != nil {
|
||||
|
|
|
@ -96,6 +96,7 @@ func (c *Communicator) UploadDir(dst string, src string, exclude []string) error
|
|||
}
|
||||
*/
|
||||
|
||||
// TODO: remove any file copied if it appears in `exclude`
|
||||
chrootDest := filepath.Join(c.Chroot, dst)
|
||||
log.Printf("Uploading directory '%s' to '%s'", src, chrootDest)
|
||||
cpCmd := fmt.Sprintf("cp -R %s* %s", src, chrootDest)
|
||||
|
|
Loading…
Reference in New Issue