Merge pull request #38 from kwilczynski/master

builder/amazonebs: Fix a typo.
This commit is contained in:
Mitchell Hashimoto 2013-06-28 12:20:08 -07:00
commit e4cb3e2432
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func (a *artifact) Destroy() error {
errors := make([]error, 0)
for _, imageId := range a.amis {
log.Printf("Degistering image ID: %s", imageId)
log.Printf("Deregistering image ID: %s", imageId)
if _, err := a.conn.DeregisterImage(imageId); err != nil {
errors = append(errors, err)
}