fix: pin black to 23.11.0 (#19) #33
reviewdog [shellcheck] report
reported by reviewdog 🐶
Findings (9)
entrypoint.sh|10 col 16| Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
entrypoint.sh|12 col 16| Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
entrypoint.sh|12 col 19| Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
entrypoint.sh|14 col 16| Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
entrypoint.sh|49 col 33| Use "${array[@]}" (with quotes) to prevent whitespace problems.
entrypoint.sh|56 col 32| Double quote to prevent globbing and word splitting.
entrypoint.sh|74 col 33| Double quote to prevent globbing and word splitting.
entrypoint.sh|76 col 34| Double quote to prevent globbing and word splitting.
entrypoint.sh|87 col 34| Double quote to prevent globbing and word splitting.
Filtered Findings (0)
Annotations
Check warning on line 10 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L10 <ShellCheck.SC2206>
Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
Raw output
./entrypoint.sh:10:16: warning: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a. (ShellCheck.SC2206)
Check warning on line 12 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L12 <ShellCheck.SC2206>
Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
Raw output
./entrypoint.sh:12:16: warning: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a. (ShellCheck.SC2206)
Check warning on line 12 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L12 <ShellCheck.SC2206>
Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
Raw output
./entrypoint.sh:12:19: warning: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a. (ShellCheck.SC2206)
Check warning on line 14 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L14 <ShellCheck.SC2206>
Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
Raw output
./entrypoint.sh:14:16: warning: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a. (ShellCheck.SC2206)
Check warning on line 49 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L49 <ShellCheck.SC2048>
Use "${array[@]}" (with quotes) to prevent whitespace problems.
Raw output
./entrypoint.sh:49:33: warning: Use "${array[@]}" (with quotes) to prevent whitespace problems. (ShellCheck.SC2048)
Check notice on line 56 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L56 <ShellCheck.SC2086>
Double quote to prevent globbing and word splitting.
Raw output
./entrypoint.sh:56:32: info: Double quote to prevent globbing and word splitting. (ShellCheck.SC2086)
Check notice on line 74 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L74 <ShellCheck.SC2086>
Double quote to prevent globbing and word splitting.
Raw output
./entrypoint.sh:74:33: info: Double quote to prevent globbing and word splitting. (ShellCheck.SC2086)
Check notice on line 76 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L76 <ShellCheck.SC2086>
Double quote to prevent globbing and word splitting.
Raw output
./entrypoint.sh:76:34: info: Double quote to prevent globbing and word splitting. (ShellCheck.SC2086)
Check notice on line 87 in entrypoint.sh
github-actions / shellcheck
[shellcheck] entrypoint.sh#L87 <ShellCheck.SC2086>
Double quote to prevent globbing and word splitting.
Raw output
./entrypoint.sh:87:34: info: Double quote to prevent globbing and word splitting. (ShellCheck.SC2086)