mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 01:53:41 +08:00
Writing a shell script correctly can be hard even for a skilled programmer. shellcheck is a static analysis tool that helps catch common errors in shell scripts. We now have 36 executable scripts in our repository, for which shellcheck reports 126 errors (calculated like find . -type f -executable -exec bash -c '[ "$(file --brief --mime-type "$1")" == "text/x-shellscript" ]' sh {} \; -exec shellcheck -f gcc --exclude=SC2086 {} \; | cut -d: -f1 | sort | uniq | wc -l). This commit fixes these warnings and adds a GitHub actions workflow that runs shellcheck on all the executable shell scripts in the repository. The warning SC2086: Double quote to prevent globbing and word splitting is disabled globally, because it has little practical consequences, sometimes leads to false positives, and is general is too widespread because people forget to quote.
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# To avoid pw writing, add localhost:5432:*:postgres:test to ~/.pgpass
|
|
set -u
|
|
set -e
|
|
|
|
PWD=$(pwd)
|
|
DIR=$(dirname $0)
|
|
|
|
export PGUSER=${PGUSER:-postgres}
|
|
export PGHOST=${PGHOST:-localhost}
|
|
export PGDATABASE=${PGDATABASE:-timescaledb}
|
|
|
|
psql -v ON_ERROR_STOP=1 -q -X -f $DIR/sql/$1
|