Browse Source

hush-cli must be in your PATH, using /usr/bin is dumb af

jahway603
Duke Leto 3 years ago
parent
commit
13dbe87660
  1. 2
      script/hush.go

2
script/hush.go

@ -91,7 +91,7 @@ func open(path string) io.Writer {
}
func run(args ...string) string {
out, err := exec.Command("/usr/bin/zcash-cli", args...).CombinedOutput()
out, err := exec.Command("hush-cli", args...).CombinedOutput()
if err != nil {
panic(err)
}

Loading…
Cancel
Save