From 85eaf31dab8c635aa477b8b7b0d94b2bef69427f Mon Sep 17 00:00:00 2001 From: mh-cbon Date: Sun, 26 Jun 2016 10:31:12 +0200 Subject: [PATCH] go fmt --- guid/index.go | 6 +++--- main.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guid/index.go b/guid/index.go index d7f8714..c4ccb52 100644 --- a/guid/index.go +++ b/guid/index.go @@ -13,10 +13,10 @@ import ( func Make() (string, error) { if runtime.GOOS == "windows" { - b, err := util.GetBinPath() - if err != nil { + b, err := util.GetBinPath() + if err != nil { return "", err - } + } cmd := "cscript.exe" args := []string{filepath.Join(filepath.Base(b), "utils", "myuuid.vbs")} diff --git a/main.go b/main.go index 61a73a3..6249c71 100644 --- a/main.go +++ b/main.go @@ -10,8 +10,8 @@ import ( "github.com/mh-cbon/go-msi/manifest" "github.com/mh-cbon/go-msi/rtf" "github.com/mh-cbon/go-msi/tpls" - "github.com/mh-cbon/go-msi/wix" "github.com/mh-cbon/go-msi/util" + "github.com/mh-cbon/go-msi/wix" "github.com/urfave/cli" )