Only include iTerm2 Bash integration if on Darwin

This commit is contained in:
Scott Wallace 2019-01-12 14:31:32 +00:00
parent 3fc30fa876
commit d5f2a969e9

View file

@ -158,7 +158,7 @@ fi
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
# iTerm2 shell integration # iTerm2 shell integration
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
[ -f ~/.iterm2/shell_integration.bash ] && source ~/.iterm2/shell_integration.bash [ $(uname -s) = 'Darwin' -a -f ~/.iterm2/shell_integration.bash ] && source ~/.iterm2/shell_integration.bash
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------