Removed check for InitDb logs #328
reviewdog [shellcheck] report
reported by reviewdog 🐶
Findings (2)
docs/modules/airflow/examples/getting_started/code/getting_started.sh|85 col 49| To redirect stdout+stderr, 2>&1 must be last (or use '{ cmd > file; } 2>&1' to clarify).
docs/modules/airflow/examples/getting_started/code/getting_started.sh|88 col 12| Use single quotes, otherwise this expands now rather than when signalled.
Filtered Findings (0)
Annotations
Check warning on line 85 in docs/modules/airflow/examples/getting_started/code/getting_started.sh
github-actions / shellcheck
[shellcheck] docs/modules/airflow/examples/getting_started/code/getting_started.sh#L85 <ShellCheck.SC2069>
To redirect stdout+stderr, 2>&1 must be last (or use '{ cmd > file; } 2>&1' to clarify).
Raw output
./docs/modules/airflow/examples/getting_started/code/getting_started.sh:85:49: warning: To redirect stdout+stderr, 2>&1 must be last (or use '{ cmd > file; } 2>&1' to clarify). (ShellCheck.SC2069)
Check warning on line 88 in docs/modules/airflow/examples/getting_started/code/getting_started.sh
github-actions / shellcheck
[shellcheck] docs/modules/airflow/examples/getting_started/code/getting_started.sh#L88 <ShellCheck.SC2064>
Use single quotes, otherwise this expands now rather than when signalled.
Raw output
./docs/modules/airflow/examples/getting_started/code/getting_started.sh:88:12: warning: Use single quotes, otherwise this expands now rather than when signalled. (ShellCheck.SC2064)