remove '.exe' from tesseract-ocr

This commit is contained in:
Mechant Rouquin
2020-09-02 17:11:20 +02:00
parent 1c2c66532c
commit e1fd1988fc
+2 -2
View File
@@ -2,7 +2,7 @@
# Push-button installer of macOS on VirtualBox # Push-button installer of macOS on VirtualBox
# (c) myspaghetti, licensed under GPL2.0 or higher # (c) myspaghetti, licensed under GPL2.0 or higher
# url: https://github.com/myspaghetti/macos-virtualbox # url: https://github.com/myspaghetti/macos-virtualbox
# version 0.97.2 # version 0.97.3
# Dependencies: bash coreutils gzip unzip wget xxd dmg2img # Dependencies: bash coreutils gzip unzip wget xxd dmg2img
# Optional features: tesseract-ocr tesseract-ocr-eng # Optional features: tesseract-ocr tesseract-ocr-eng
@@ -1486,7 +1486,7 @@ function send_enter() {
function prompt_lang_utils_terminal() { function prompt_lang_utils_terminal() {
tesseract_ocr="$(tesseract --version 2>/dev/null)" tesseract_ocr="$(tesseract --version 2>/dev/null)"
tesseract_lang="$(tesseract.exe --list-langs 2>/dev/null)" tesseract_lang="$(tesseract --list-langs 2>/dev/null)"
regex_ver='[Tt]esseract 4' # for zsh quoted regex compatibility regex_ver='[Tt]esseract 4' # for zsh quoted regex compatibility
if [[ "${tesseract_ocr}" =~ ${regex_ver} && "${tesseract_lang}" =~ eng ]]; then if [[ "${tesseract_ocr}" =~ ${regex_ver} && "${tesseract_lang}" =~ eng ]]; then
echo -e "\n${low_contrast_color}Attempting automated recognition of virtual machine graphical user interface.${default_color}" echo -e "\n${low_contrast_color}Attempting automated recognition of virtual machine graphical user interface.${default_color}"