infrastructure/ci/statix.sh
2024-02-22 14:20:14 -08:00

12 lines
188 B
Bash

#!/usr/bin/env bash
set -eu
if [[ $# -eq 0 ]]; then
set -- check
fi
if [[ ${1-} = check ]]; then
shift
set -- check --config "$NF_CONFIG_ROOT/ci/statix.toml" "$@"
fi
exec statix "$@"