-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextcomps.go
More file actions
40 lines (34 loc) · 779 Bytes
/
extcomps.go
File metadata and controls
40 lines (34 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Get absolute path to binaries of external components like bash
package main
import (
"log"
"os/exec"
)
func GetBash() string {
exe, err := exec.LookPath("bash")
if err != nil {
log.Fatal("Looks like you don't have bash installed correctly...")
}
return exe
}
func GetMount() string {
exe, err := exec.LookPath("mount")
if err != nil {
log.Fatal("Looks like you don't have mount installed correctly...")
}
return exe
}
func GetUnmount() string {
exe, err := exec.LookPath("diskutil")
if err != nil {
log.Fatal("Looks like you don't have diskutil installed correctly...")
}
return exe
}
func GetEncFS() string {
exe, err := exec.LookPath("encfs")
if err != nil {
log.Fatal("Looks like you don't have EncFS installed correctly...")
}
return exe
}