Skip to content

Commit e8f76ce

Browse files
committed
fix: remove running pickle checking script on macOS (#201)
1 parent 70354c1 commit e8f76ce

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

backend/utils/convert/pickle_convert.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package convutil
22

3-
import "os/exec"
3+
import (
4+
"os/exec"
5+
"runtime"
6+
)
47

58
type PickleConvert struct {
69
CmdConvert
@@ -49,6 +52,14 @@ func NewPickleConvert() *PickleConvert {
4952
}
5053
}
5154
// check if pickle available
55+
if runtime.GOOS == "darwin" {
56+
// the xcode-select installation prompt may appear on macOS
57+
// so check it manually in advance
58+
if _, err = exec.LookPath("xcode-select"); err != nil {
59+
return nil
60+
}
61+
}
62+
5263
if _, err = runCommand(c.DecodePath, "-c", "import pickle"); err != nil {
5364
return nil
5465
}

0 commit comments

Comments
 (0)