Skip to content

Commit a465324

Browse files
gustavobertoiclaude
andcommitted
fix(install): silence shellcheck SC2016 on the intentional $PATH hint
The PATH hint deliberately prints a literal `$PATH` for the user to copy; mark the line with a scoped `# shellcheck disable=SC2016` so the installer CI lane passes (shellcheck exits non-zero even on info-level findings). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 3c82b03 commit a465324

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ fi
127127
case ":${PATH}:" in
128128
*":${install_dir}:"*) ;;
129129
*) warn "${install_dir} is not on your PATH — add it, e.g.:"
130+
# shellcheck disable=SC2016 # the literal $PATH is intentional in this hint
130131
printf ' export PATH="%s:$PATH"\n' "$install_dir" >&2 ;;
131132
esac
132133

0 commit comments

Comments
 (0)