Skip to content

Commit

Permalink
fix newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
liias committed Nov 10, 2024
1 parent 8e694d3 commit 6feb318
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ jobs:
run: |
install_dir="$HOME/.local/bin"
cd "$install_dir"
set -x
command_output=$(./browsers --no-gui https://browsers.software)
echo $command_output
echo "$command_output"
if $command_output | grep -q 'Firefox Web Browser'; then
echo "matched Firefox Web Browser"
Expand Down Expand Up @@ -217,8 +219,8 @@ jobs:
set -x
command_output=$(./Browsers.app -W --stdout $(tty) --stderr $(tty) --args --no-gui https://browsers.software)
echo "$command_output"
echo $command_output
if $command_output | grep -q 'Safari'; then
echo "matched Safari"
fi
Expand Down Expand Up @@ -308,9 +310,10 @@ jobs:
run: |
install_dir="$PROGRAMFILES/software.Browsers"
cd "$install_dir"
command_output=$(./browsers.exe --no-gui https://browsers.software)
set -x
echo $command_output
command_output=$(./browsers.exe --no-gui https://browsers.software)
echo "$command_output"
if $command_output | grep -q 'Mozilla Firefox'; then
echo "matched Mozilla Firefox"
Expand Down

0 comments on commit 6feb318

Please sign in to comment.