Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paperchalice committed Jul 29, 2024
1 parent 8f0f54e commit 2ed2841
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }}
PULL_REQUEST: ${{ github.event.pull_request.number }}
run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"

- name: Push commits
uses: Homebrew/actions/git-try-push@master
Expand All @@ -32,4 +32,4 @@ jobs:
if: github.event.pull_request.head.repo.fork == false
env:
BRANCH: ${{ github.event.pull_request.head.ref }}
run: git push --delete origin $BRANCH
run: git push --delete origin "$BRANCH"
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Use my fork Homebrew
run: |
pushd $(brew --repo)
pushd "$(brew --repo)"
git config pull.rebase true
git remote add me https://github.com/paperchalice/brew.git
git fetch me
Expand All @@ -50,7 +50,7 @@ jobs:
- name: mark qt keg only
if: contains(github.event.pull_request.labels.*.name, 'webengine')
run: |
pushd $(brew --repo)/Library/Taps/homebrew/homebrew-core
pushd "$(brew --repo homebrew/core)"
sed -i '' 's/uses_from_macos "zlib"/keg_only "foo"/g' Formula/qt.rb
popd
Expand Down

0 comments on commit 2ed2841

Please sign in to comment.