Skip to content

Commit

Permalink
remove first line (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottrabac authored Jun 12, 2024
1 parent ab399f3 commit bf16f30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ if [[ "${SQLFLUFF_COMMAND:?}" == "lint" ]]; then
$(if [[ "x${SQLFLUFF_TEMPLATER}" != "x" ]]; then echo "--templater ${SQLFLUFF_TEMPLATER}"; fi) \
$(if [[ "x${SQLFLUFF_DISABLE_NOQA}" != "x" ]]; then echo "--disable-noqa ${SQLFLUFF_DISABLE_NOQA}"; fi) \
$(if [[ "x${SQLFLUFF_DIALECT}" != "x" ]]; then echo "--dialect ${SQLFLUFF_DIALECT}"; fi) \
$changed_files >> "$lint_results"
$changed_files | tail -n +2 >> "$lint_results"

sqlfluff_exit_code=$?
cat "$lint_results"
Expand Down
1 change: 1 addition & 0 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pre-commit>=2.0,<3.0

# dbt
dbt-core==${DBT_VERSION}
dbt-bigquery==${DBT_VERSION}

# sqlfluff
sqlfluff==${SQLFLUFF_VERSION}
Expand Down

0 comments on commit bf16f30

Please sign in to comment.