Skip to content

Commit e9036e7

Browse files
committed
Mac OS support
1 parent 3bb79a7 commit e9036e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

benchmark_change.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ http -p 8080 &
4040
npm run results
4141
)
4242

43-
xdg-open http://localhost:8080/webdriver-ts-results/table.html &
43+
if [[ $OSTYPE == 'darwin'* ]]; then
44+
open http://localhost:8080/webdriver-ts-results/table.html &
45+
else
46+
xdg-open http://localhost:8080/webdriver-ts-results/table.html &
47+
fi
4448
sleep 1
4549
)
4650

0 commit comments

Comments
 (0)