Skip to content

Commit

Permalink
Fix Homebrew PATH setup in ci.yml by removing global flag in sed command
Browse files Browse the repository at this point in the history
  • Loading branch information
nmosisi1 committed Sep 26, 2024
1 parent 0e07d4c commit 5fd9a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew shellenv | sed 's/^export //g' >> $GITHUB_ENV
brew shellenv | sed 's/^export //' >> $GITHUB_ENV
- name: Install dependencies
run: |
Expand Down

0 comments on commit 5fd9a26

Please sign in to comment.