We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257a1ab commit 09329d4Copy full SHA for 09329d4
lib/spawn/helper_linux.go
@@ -64,3 +64,8 @@ func prepareExecutable() error {
64
func UnzipExecutable(path string) error {
65
return unzip(path, GetThrustDirectory())
66
}
67
+
68
+func PathNotExist(path string) bool {
69
+ _, err := os.Stat(path)
70
+ return os.IsNotExist(err)
71
+}
lib/spawn/helper_windows.go
@@ -65,3 +65,8 @@ func prepareExecutable() error {
72
0 commit comments