Skip to content

Commit

Permalink
main fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-k committed Nov 30, 2019
1 parent 59a5e87 commit 3001efe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
3 changes: 2 additions & 1 deletion cmd/flasher/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package main

import (
"context"
"flag"
"fmt"
"io/ioutil"
Expand Down Expand Up @@ -38,7 +39,7 @@ func main() {
}

flshr := flasher.NewFlasher(ui, flashercfg)
err := flshr.Flash()
err := flshr.Flash(context.Background())
if err != nil {
fmt.Println("error:", err)
os.Exit(-1)
Expand Down
12 changes: 0 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
module github.com/solo-io/packer-builder-arm-image

require (
github.com/hashicorp/errwrap v1.0.0
github.com/hashicorp/go-checkpoint v0.0.0-20171009173528-1545e56e46de
github.com/hashicorp/go-cleanhttp v0.5.0
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-uuid v1.0.1
github.com/hashicorp/go-version v1.2.0
github.com/hashicorp/packer v1.4.5
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d
github.com/mitchellh/go-fs v0.0.0-20180402234041-7b48fa161ea7
github.com/mitchellh/iochan v1.0.0
github.com/mitchellh/mapstructure v0.0.0-20180111000720-b4575eea38cc
github.com/mitchellh/reflectwalk v1.0.0
github.com/rekby/mbr v0.0.0-20151216101307-8c28b6465703
github.com/ugorji/go v0.0.0-20151218193438-646ae4a518c1
github.com/ulikunitz/xz v0.5.5
gopkg.in/h2non/filetype.v1 v1.0.5
)
Expand Down

0 comments on commit 3001efe

Please sign in to comment.