From c2bc59efbec1f3b91b0179092010e1587184d33c Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Wed, 19 Oct 2022 20:57:06 -0700 Subject: [PATCH] Created SC1092 (markdown) --- SC1092.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SC1092.md diff --git a/SC1092.md b/SC1092.md new file mode 100644 index 0000000..99092af --- /dev/null +++ b/SC1092.md @@ -0,0 +1,21 @@ +## Stopping at 100 'source' frames :O + +### Problematic code: + +An initial file sourcing a second file, which in turn sources a third file, which in turn sources a fourth file, ...., which in turn sources a 100th file. + +### Correct code: + +Anything but that. + +### Rationale: + +ShellCheck found a chain of 100+ files sourcing each other. It assumed there must be some internal bug, so it stopped. + +### Exceptions: + +If this is intentional, you can cosmetically [[ignore]] this message. + +### Related resources: + +* Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc! \ No newline at end of file