1
0

fix issues with macos

This commit is contained in:
2025-02-13 22:37:57 +01:00
parent c0df575647
commit 35d046d7d8
2 changed files with 21 additions and 2 deletions

View File

@@ -19,4 +19,15 @@ export SSH_ENV="$HOME/.ssh/agent-environment"
export PATH=~/.local/bin:$PATH
case "$(uname -s)" in
Linux* ) {
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
};;
Darwin* ) {
eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH="/opt/homebrew/opt/make/libexec/gnubin:$PATH"
};;
* ) ;;
esac
. "$HOME/.cargo/env"