-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1090
koalaman edited this page Aug 17, 2015
·
9 revisions
source "$1/lib.sh"
# shellcheck disable=SC1090
source "$1/lib.sh"
ShellCheck is not able to include sourced files from non-constant paths.
Instead, be aware that anything in the sourced file will be ignored, and then disable the message.
Ignore the message with a directive.