diff options
Diffstat (limited to 'cmd/rescribe/main.go')
-rw-r--r-- | cmd/rescribe/main.go | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/cmd/rescribe/main.go b/cmd/rescribe/main.go index 56c9777..ea2590f 100644 --- a/cmd/rescribe/main.go +++ b/cmd/rescribe/main.go @@ -185,14 +185,16 @@ func main() { } if !*systess { + err = unpackZip(tesszip, tessdir) + if err != nil { + log.Fatalln("Error unpacking embedded Tesseract zip:", err) + } switch runtime.GOOS { case "windows": - err = unpackZip(tesszip, tessdir) - if err != nil { - log.Fatalln("Error unpacking embedded Tesseract zip:", err) - } tessCommand = filepath.Join(tessdir, "tesseract.exe") - // TODO: add linux and osx + case "linux": + tessCommand = filepath.Join(tessdir, "tesseract") + // TODO: add osx } } |