Skip to content

Commit

Permalink
Fix exit codes
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenfyhn committed Sep 10, 2024
1 parent ffaffc8 commit 1203841
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export CC=clang
export CXX=clang++

# Add things to path, but just once
[[ "$PATH" != *"/usr/lib/ccache"* ]] && export PATH="/usr/lib/ccache:$PATH"
[[ "$PATH" != *"$HOME/.local/bin"* ]] && export PATH="$PATH:$HOME/.local/bin"
if [[ "$PATH" != *"/usr/lib/ccache"* ]]; then; export PATH="/usr/lib/ccache:$PATH"; fi
if [[ "$PATH" != *"$HOME/.local/bin"* ]]; then; export PATH="$PATH:$HOME/.local/bin"; fi

source ~/.aliases
[[ -e ~/.zshrc-local ]] && source ~/.zshrc-local
if [[ -e ~/.zshrc-local ]]; then; source ~/.zshrc-local; fi

0 comments on commit 1203841

Please sign in to comment.