builder/digitalocean: fix build

This commit is contained in:
Mitchell Hashimoto 2015-06-10 18:58:50 -07:00
parent 6b29c2d26a
commit c9c9e2871c
1 changed files with 2 additions and 1 deletions

View File

@ -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),