Skip to content

Commit

Permalink
fix: check if local zprofile exists, add maven + gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
bklebe committed Oct 31, 2024
1 parent 8c5e232 commit 568170d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .config/mise/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ usage = "0.3.0"
java = "zulu-23.30.13"
shellcheck = "0.10.0"
spring-boot = "3.3.5"
gradle = "8.10.2"
maven = "3.9.9"

[settings]
experimental = true
4 changes: 3 additions & 1 deletion .config/zsh/.zprofile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ $HOME/Library/Application Support/JetBrains/Toolbox/scripts:\
/Applications/gg.app/Contents/MacOS/:\
$PATH"

. $ZDOTDIR/.zprofile-local
if [ -f "$ZDOTDIR"/.zprofile-local ]; then
. "$ZDOTDIR"/.zprofile-local
fi

export CPPFLAGS="${CPPFLAGS+"$CPPFLAGS "}-I$prefix/opt/unixodbc/include"
export LDFLAGS="${LDFLAGS+"$LDFLAGS "}-L$prefix/opt/unixodbc/lib"
Expand Down

0 comments on commit 568170d

Please sign in to comment.