Skip to content

Commit

Permalink
fix zip installer on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ImSingee committed Mar 1, 2024
1 parent 97350c4 commit 964852e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/extension-registry/utils/zip.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ func unzipFile(f *zip.File, dest string) error {
}

// create file
_ = os.MkdirAll(filepath.Dir(path), 0755)
file, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
if err != nil {
return err
Expand Down

0 comments on commit 964852e

Please sign in to comment.