🎨 Windoar arm64 and Linux arm64 no longer packing pandoc https://github.com/siyuan-note/siyuan/issues/11649

This commit is contained in:
Daniel 2024-06-05 11:50:16 +08:00
parent 939b128e51
commit f9317ce744
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 26 additions and 9 deletions

View file

@ -70,6 +70,4 @@ extraResources:
filter: "!**/{.DS_Store,custom.css}"
- from: "src/assets/fonts"
to: "appearance/fonts"
filter: "!**/{.DS_Store}"
- from: "pandoc/pandoc-windows-amd64.zip"
to: "pandoc.zip"
filter: "!**/{.DS_Store}"

View file

@ -63,6 +63,4 @@ extraResources:
filter: "!**/{.DS_Store,custom.css}"
- from: "src/assets/fonts"
to: "appearance/fonts"
filter: "!**/{.DS_Store}"
- from: "pandoc/pandoc-linux-amd64.zip"
to: "pandoc.zip"
filter: "!**/{.DS_Store}"

View file

@ -22,6 +22,7 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"github.com/88250/gulu"
@ -29,9 +30,11 @@ import (
"github.com/siyuan-note/logging"
)
var ErrPandocNotFound = errors.New("not found executable pandoc")
func ConvertPandoc(dir string, args ...string) (path string, err error) {
if "" == PandocBinPath || ContainerStd != Container {
err = errors.New("not found executable pandoc")
err = ErrPandocNotFound
return
}
@ -55,6 +58,11 @@ func ConvertPandoc(dir string, args ...string) (path string, err error) {
}
func Pandoc(from, to, o, content string) (err error) {
if "" == PandocBinPath || ContainerStd != Container {
err = ErrPandocNotFound
return
}
if "" == from || "" == to || "md" == to {
if err = gulu.File.WriteFileSafer(o, []byte(content), 0644); nil != err {
logging.LogErrorf("write export markdown file [%s] failed: %s", o, err)
@ -123,9 +131,15 @@ func InitPandoc() {
defer eventbus.Publish(EvtConfPandocInitialized)
if gulu.OS.IsWindows() {
PandocBinPath = filepath.Join(pandocDir, "bin", "pandoc.exe")
} else if gulu.OS.IsDarwin() || gulu.OS.IsLinux() {
if "amd64" == runtime.GOARCH {
PandocBinPath = filepath.Join(pandocDir, "bin", "pandoc.exe")
}
} else if gulu.OS.IsDarwin() {
PandocBinPath = filepath.Join(pandocDir, "bin", "pandoc")
} else if gulu.OS.IsLinux() {
if "amd64" == runtime.GOARCH {
PandocBinPath = filepath.Join(pandocDir, "bin", "pandoc")
}
}
pandocVer := getPandocVer(PandocBinPath)
if "" != pandocVer {
@ -143,6 +157,13 @@ func InitPandoc() {
pandocZip = filepath.Join(WorkingDir, "pandoc/pandoc-linux-amd64.zip")
}
}
if !gulu.File.IsExist(pandocZip) {
PandocBinPath = ""
logging.LogErrorf("pandoc zip [%s] not found", pandocZip)
return
}
if err := gulu.Zip.Unzip(pandocZip, pandocDir); nil != err {
logging.LogErrorf("unzip pandoc failed: %s", err)
return