Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ikuwow committed Jan 17, 2021
1 parent f6fb134 commit 56e72e5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .bashrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# shellcheck disable=SC2148
# vim: filetype=sh :

if [ "${BASH_VERSINFO[0]}" -le 3 ]; then
Expand All @@ -13,11 +14,9 @@ fi
## Auto complete
complete -C aws_completer aws

if [ "${BASH_VERSINFO[0]}" -ge 4 ]; then
BASH_COMPLETION="/usr/local/etc/profile.d/bash_completion.sh"
# shellcheck disable=SC1090
[[ -r "$BASH_COMPLETION" ]] && . "$BASH_COMPLETION"
fi
BASH_COMPLETION="/usr/local/etc/profile.d/bash_completion.sh"
# shellcheck disable=SC1090
[[ -r "$BASH_COMPLETION" ]] && . "$BASH_COMPLETION"

## Language Specific configs
export GOPATH=$HOME/.go
Expand Down

0 comments on commit 56e72e5

Please sign in to comment.