From 1917c8712561757f4a27b4c3fc67071d94d15883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20L=C3=B3pez?= Date: Tue, 4 Jun 2024 12:03:46 +0200 Subject: [PATCH] Fixed reports command --- commands/host/backstopjs-results | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/host/backstopjs-results b/commands/host/backstopjs-results index d19f195..b2fd531 100755 --- a/commands/host/backstopjs-results +++ b/commands/host/backstopjs-results @@ -14,12 +14,12 @@ fi case $OSTYPE in linux-gnu) - xdg-open + xdg-open $REPORT_PATH ;; "darwin"*) - open tests/functional/backstopjs/backstop_data/html_report/index.html + open $REPORT_PATH ;; "win*"* | "msys"*) - start tests/functional/backstopjs/backstop_data/html_report/index.html + start $REPORT_PATH ;; esac