diff --git a/hugo/hugo.go b/hugo/hugo.go index d59c06fc..05a0c23f 100644 --- a/hugo/hugo.go +++ b/hugo/hugo.go @@ -80,10 +80,10 @@ func GetPath() string { switch runtime.GOOS { case "darwin", "windows": zp := extractor.NewZip() - zp.Extract(tempfile, temp) + err = zp.Extract(tempfile, temp) default: gz := extractor.NewTgz() - gz.Extract(tempfile, temp) + err = gz.Extract(tempfile, temp) } if err != nil {