Commit 2504dea
committed
Follow best practices with
The valued advice provided by the ShellCheck shell script static analysis tool is:
https://github.com/koalaman/shellcheck/wiki/SC2162
> You should always use `-r` unless you have a good reason not to.
In order to achieve ShellCheck compliance, it is necessary to do one of the following:
- Add the `-r` flag to the `read` command.
- Add a ShellCheck directive to the script to disable rule SC2162 for this line.
In this particular application, `-r` is not necessary, but it also does no harm. So I think the first option is best.read command in deploy script1 parent 162d79c commit 2504dea
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
0 commit comments