diff --git a/pkg/compiler/artifact.go b/pkg/compiler/artifact.go index 5d783448..4c4058bc 100644 --- a/pkg/compiler/artifact.go +++ b/pkg/compiler/artifact.go @@ -226,6 +226,7 @@ func (a *PackageArtifact) Compress(src string, concurrency int) error { w.Close() os.RemoveAll(a.Path) // Remove original a.CompressedPath = gzipfile + return nil //a.Path = gzipfile } return errors.New("Compression type must be supplied") @@ -267,6 +268,7 @@ func (a *PackageArtifact) Unpack(dst string, keepPerms bool) error { if err != nil { return err } + return nil } return errors.New("Compression type must be supplied")