Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-dev-utils/openChrome.applescript
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ property targetWindow: null
on run argv
set theURL to item 1 of argv

tell application "Google Chrome"
tell application "Chrome"

if (count every window) = 0 then
make new window
Expand Down Expand Up @@ -58,7 +58,7 @@ end run
-- if found, store tab, index, and window in properties
-- (properties were declared on top of file)
on lookupTabWithUrl(lookupUrl)
tell application "Google Chrome"
tell application "Chrome"
-- Find a tab with the given url
set found to false
set theTabIndex to -1
Expand Down