Skip to content

Commit

Permalink
fix brew path
Browse files Browse the repository at this point in the history
  • Loading branch information
martimlobao committed Nov 8, 2024
1 parent f6be3a9 commit 8ce1a94
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/bootstrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ jobs:
env:
BRANCH: ${{ github.head_ref }}
run: |
curl -L https://raw.githubusercontent.com/martimlobao/dotfiles/feat/bootstrap-ci/bootstrap.sh | bash -s -- -b "${BRANCH}" -y
curl -L https://raw.githubusercontent.com/martimlobao/dotfiles/main/bootstrap.sh \
| bash -s -- -b "${BRANCH}" -y
6 changes: 5 additions & 1 deletion linkme/.zprofile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
set -e

# Homebrew
eval "$(/opt/homebrew/bin/brew shellenv)"
eval "$(brew --prefix)/bin/brew shellenv)"

eval "$(pyenv init -)"

# Add uv to PATH
export PATH="$HOME/.local/bin:$PATH"
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fi
# echo -e "\033[1;33m🚀 Running macos.sh...\033[0m"
# sudo ./macos.sh

# check if in GITHUB_ACTIONS is true and exit if it is
# CI is not supported after this point
if [[ ${GITHUB_ACTIONS} == "true" ]]; then
echo -e "\033[1;33m ⛔️ Warning: macOS is not supported in CI after this point.\033[0m"
exit 0
Expand Down

0 comments on commit 8ce1a94

Please sign in to comment.