Skip to content

Commit

Permalink
add chrome location fallback for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kensoh committed Dec 13, 2020
1 parent edee069 commit eb4787f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/tagui.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ rem # SCRIPT FOR RUNNING TAGUI FRAMEWORK ~ TEBEL.ORG #
rem configure command to launch chrome for Windows
set chrome_command=C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

rem fallback in case newer Chrome is not installed in x86 folder
if not exist "%chrome_command%" (
set chrome_command=C:\Program Files\Google\Chrome\Application\chrome.exe
)

rem enable windows for loop advanced flow control
setlocal enableextensions enabledelayedexpansion

Expand Down

0 comments on commit eb4787f

Please sign in to comment.