1
This commit is contained in:
Alex Yatskov 2017-02-12 11:31:40 -08:00
parent b702e5cefb
commit 7b0d2a122a

View File

@ -70,12 +70,7 @@ func epwingExportDb(inputPath, outputDir, title string, stride int, pretty bool)
var data []byte
if stat.IsDir() {
toolPath := filepath.Join(
"bin",
runtime.GOOS,
"zero-epwing",
)
toolPath := filepath.Join("bin", runtime.GOOS, "zero-epwing")
if runtime.GOOS == "windows" {
toolPath += ".exe"
}
@ -88,7 +83,7 @@ func epwingExportDb(inputPath, outputDir, title string, stride int, pretty bool)
return fmt.Errorf("failed to find zero-epwing in '%s'", toolPath)
}
cmd := exec.Command(toolPath, inputPath)
cmd := exec.Command(toolPath, "--entries", inputPath)
stdout, err := cmd.StdoutPipe()
if err != nil {