mirror of https://github.com/citusdata/citus.git
16 lines
288 B
Bash
Executable File
16 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# fail if trying to reference a variable that is not set.
|
|
set -u / set -o nounset
|
|
# exit immediately if a command fails
|
|
set -e
|
|
|
|
cidir="${0%/*}"
|
|
cd ${cidir}/..
|
|
|
|
ci/editorconfig.sh
|
|
ci/remove_useless_declarations.sh
|
|
ci/disallow_c_comments_in_migrations.sh
|
|
|
|
citus_indent . --quiet
|