diff options
| author | jason | 2021-12-07 12:45:07 -0700 |
|---|---|---|
| committer | jason | 2021-12-07 12:45:07 -0700 |
| commit | ee9bee1412503e58ad6642db435cfa205ed16a37 (patch) | |
| tree | 756df69e3a63232a616c6dcb4075852f0ee7ef6d /bash | |
| parent | 34de5f5c55f3165bc5fb1526325b1a1c841010e6 (diff) | |
| download | dotfiles-ee9bee1412503e58ad6642db435cfa205ed16a37.tar.gz dotfiles-ee9bee1412503e58ad6642db435cfa205ed16a37.zip | |
disable bash deprecation warning for os x
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index c247e1b..4a24569 100644 --- a/bash/.bashrc +++ b/bash/.bashrc | |||
| @@ -1,6 +1,9 @@ | |||
| 1 | PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] " | 1 | PS1="[\u@\[\e[38;5;148m\]\h\[\e[m\]:\[\e[36m\]\W\[\e[m\]\[\e[m\]]\[\e[m\]\$\[\e[m\] " |
| 2 | PATH="${HOME}/bin:${PATH}" | 2 | PATH="${HOME}/bin:${PATH}" |
| 3 | 3 | ||
| 4 | # Disable bash deprecation warning on OS X | ||
| 5 | export BASH_SILENCE_DEPRECATION_WARNING=1 | ||
| 6 | |||
| 4 | # Enable flutter | 7 | # Enable flutter |
| 5 | if [ -d $HOME/bin/flutter/ ]; then | 8 | if [ -d $HOME/bin/flutter/ ]; then |
| 6 | PATH="${HOME}/bin/flutter/bin:${PATH}" | 9 | PATH="${HOME}/bin/flutter/bin:${PATH}" |