Update ci/e2ereport.sh

This commit is contained in:
Anmol Sethi 2023-02-09 20:09:20 -08:00 committed by GitHub
parent 4aee9da433
commit 97e73cf3fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ FORCE_COLOR=1 DEBUG=1 go run ./e2etests/report/main.go "$@";
if [ -z "${NO_OPEN:-}" ]; then if [ -z "${NO_OPEN:-}" ]; then
if [ -s "$REPORT_OUTPUT" ]; then if [ -s "$REPORT_OUTPUT" ]; then
if command -v open >/dev/null; then if command -v open >/dev/null; then
open $REPORT_OUTPUT open "$REPORT_OUTPUT"
elif command -v xdg-open >/dev/null; then elif command -v xdg-open >/dev/null; then
xdg-open $REPORT_OUTPUT xdg-open $REPORT_OUTPUT
else else