Skip to content

Commit

Permalink
change from -c to quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
jkitchin committed Jun 23, 2024
1 parent e3c9ef1 commit 2dba9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org-db-images.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ PARSE-TREE is from `org-element-parse-buffer'."
;; Add new entries
(cl-loop for (img-file . begin) in img-data do
(setq text (shell-command-to-string
(format "tesseract -c debug_file=/dev/null %s -" img-file)))
(format "tesseract %s - quiet" img-file)))
(sqlite-execute org-db "insert into images values (?, ?, ?, ?, ?)"
(list nil filename-id
(expand-file-name img-file)
Expand Down

0 comments on commit 2dba9c8

Please sign in to comment.