diff --git a/hugo/hugo.go b/hugo/hugo.go index a8592253..4764ed11 100644 --- a/hugo/hugo.go +++ b/hugo/hugo.go @@ -122,6 +122,13 @@ func GetPath() string { panic(err) } + if err != nil { + fmt.Println(err) + os.Exit(-1) + } + + err = os.Chmod(hugo, 0755) + if err != nil { fmt.Println(err) os.Exit(-1)