Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Oct 20, 2016
1 parent aa81a0c commit b7fe62a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bin/dot_update
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ cd "$ZSH" || exit 1
PATH="$(command -p getconf PATH):/usr/local/bin"

# load custom config if any
[[ -a ~/.localrc ]] && source ~/.localrc
# shellcheck disable=SC1090
[ -f ~/.localrc ] && . ~/.localrc

# ssh would not work under cron, add a https one
echo "› setting up update channel"
Expand Down
3 changes: 2 additions & 1 deletion zsh/zshrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ unset config_files updated_at

# use .localrc for SUPER SECRET CRAP that you don't
# want in your public, versioned repo.
[[ -a ~/.localrc ]] && source ~/.localrc
# shellcheck disable=SC1090
[ -f ~/.localrc ] && . ~/.localrc

0 comments on commit b7fe62a

Please sign in to comment.