mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
12 lines
188 B
Bash
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 "$@"
|