Skip to content

Commit

Permalink
fix macos e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
liias committed Nov 30, 2024
1 parent 26a178a commit 592339c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,10 @@ jobs:
cd "$target_dir"
set -x
command_output="$(open ./Browsers.app -W --stdout $(tty) --stderr $(tty) --args --no-gui https://browsers.software)"
touch ./output_file
open ./Browsers.app -W --stdout output_file --stderr output_file --args --no-gui https://browsers.software
command_output=`cat ./output_file`
echo "$command_output"
if "$command_output" | grep -q 'Safari'; then
Expand Down

0 comments on commit 592339c

Please sign in to comment.