/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/gofmtcheck.sh
16 строк
402 B
Radek Simko
make copyrightfix
17 фев 2026, 16:56
17 фев 2026, 16:56
0fe906f
Код
Авторство
О чём код?
#!/usr/bin/env bash # Copyright IBM Corp. 2014, 2026 # SPDX-License-Identifier: BUSL-1.1 # Check go fmt echo "==> Checking that code complies with go fmt requirements..." gofmt_files=$(go fmt ./...) if [[ -n ${gofmt_files} ]]; then echo 'gofmt needs running on the following files:' echo "${gofmt_files}" echo "You can use the command: \`go fmt\` to reformat code." exit 1 fi exit 0