Skip to content

Commit

Permalink
fix: to resolve appimage issues in electron builder, and since we can…
Browse files Browse the repository at this point in the history
…'t update electron-builder-binaries repo, we should just downgrade to the last working version of appimage
  • Loading branch information
mmaietta committed Jul 25, 2024
1 parent f721c14 commit 34db1a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/early-dots-repair.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-bin": patch
---

fix: to resolve appimage issues in electron builder, and since we can't update electron-builder-binaries repo, we should just downgrade to the last working version of appimage
6 changes: 3 additions & 3 deletions pkg/linuxTools/tool.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import (

"github.com/develar/app-builder/pkg/download"
"github.com/develar/app-builder/pkg/util"
"github.com/develar/go-fs-util"
fsutil "github.com/develar/go-fs-util"
)

func GetAppImageToolDir() (string, error) {
dirName := "appimage-13.0.0"
dirName := "appimage-12.0.1"
//noinspection SpellCheckingInspection
result, err := download.DownloadArtifact("",
download.GetGithubBaseUrl()+dirName+"/"+dirName+".7z",
"hBN7VlhUsFX1Uw4uD1zxkm2Z4VHZqVw45VpBghvokCml07KgG0mzP+AACphrQMlav49hlGX9epAreb4Xxvce9A==")
"3el6RUh6XoYJCI/ZOApyb0LLU/gSxDntVZ46R6+JNEANzfSo7/TfrzCRp5KlDo35c24r3ZOP7nnw4RqHwkMRLw==")
if err != nil {
return "", err
}
Expand Down

0 comments on commit 34db1a8

Please sign in to comment.