Commit c9c9e287 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/digitalocean: fix build

parent 6b29c2d2
......@@ -4,6 +4,7 @@
package digitalocean
import (
"fmt"
"log"
"time"
......@@ -47,7 +48,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
// Build the steps
steps := []multistep.Step{
&stepCreateSSHKey{
Debug: b.config.PackerDebug,
Debug: b.config.PackerDebug,
DebugKeyPath: fmt.Sprintf("do_%s.pem", b.config.PackerBuildName),
},
new(stepCreateDroplet),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment