Skip to content

Commit

Permalink
test-browser.sh only works on OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot committed Dec 27, 2023
1 parent 016e913 commit 89f8976
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test-browser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ function test_browser {

}

OS=$(uname)
if [[ "${OS}" != "Darwin" ]]; then
usage "This script must be run on Mac OSX."
exit 1
fi

if [[ $# -eq 0 ]]; then
run safari firefox chrome
else
Expand Down

0 comments on commit 89f8976

Please sign in to comment.