Commit c9c9e287 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/digitalocean: fix build

parent 6b29c2d2
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
package digitalocean package digitalocean
import ( import (
"fmt"
"log" "log"
"time" "time"
...@@ -47,7 +48,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe ...@@ -47,7 +48,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
// Build the steps // Build the steps
steps := []multistep.Step{ steps := []multistep.Step{
&stepCreateSSHKey{ &stepCreateSSHKey{
Debug: b.config.PackerDebug, Debug: b.config.PackerDebug,
DebugKeyPath: fmt.Sprintf("do_%s.pem", b.config.PackerBuildName), DebugKeyPath: fmt.Sprintf("do_%s.pem", b.config.PackerBuildName),
}, },
new(stepCreateDroplet), 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