Skip to content

Files

Latest commit

 

History

History
26 lines (16 loc) · 551 Bytes

SC1091.md

File metadata and controls

26 lines (16 loc) · 551 Bytes

Pattern: Not following file

Issue: -

Description

ShellCheck, for whichever reason, is not able to access the source file.

This could be because you did not include it on the command line, did not use shellcheck -x to allow following other files, don't have permissions or a variety of other problems.

Example of incorrect code:

source somefile

Example of correct code:

# shellcheck disable=SC1091
source somefile

Further Reading