Skip to content

Commit

Permalink
Merge pull request #677 from samford/brew-style-fixes
Browse files Browse the repository at this point in the history
Fix style issues
  • Loading branch information
Bo98 committed Jun 12, 2024
2 parents fac8674 + cad37ba commit c06dd1c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
- name: Enable linger
if: matrix.os == 'ubuntu-latest'
run: |
loginctl enable-linger $(whoami)
echo "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus" >> $GITHUB_ENV
loginctl enable-linger "$(whoami)"
echo "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus" >> "$GITHUB_ENV"
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -59,8 +59,8 @@ jobs:

- name: Unlink services repo
run: |
rm $(brew --repo homebrew/services)
cp -a $PWD $(brew --repo homebrew/services)
rm "$(brew --repo homebrew/services)"
cp -a "$PWD" "$(brew --repo homebrew/services)"
- name: Test start command
run: |
Expand Down Expand Up @@ -105,5 +105,5 @@ jobs:
- name: Link services repo
run: |
rm -rf $(brew --repo homebrew/services)
ln -s $PWD $(brew --repo homebrew/services)
rm -rf "$(brew --repo homebrew/services)"
ln -s "$PWD" "$(brew --repo homebrew/services)"

0 comments on commit c06dd1c

Please sign in to comment.