/
githubmirror
/
traefik
Обзор
Документация
Войти
/
githubmirror
/
traefik
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
script/validate-vendor.sh
14 строк
336 B
Michael
Improve makefile
17 янв 2024, 13:12
Не верифицирован
17 янв 2024, 13:12
39b0aa6
Код
Авторство
О чём код?
#!/usr/bin/env bash set -o errexit set -o pipefail set -o nounset SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd -P)"; export SCRIPT_DIR echo "checking go modules for unintentional changes..." go mod tidy git diff --exit-code go.mod git diff --exit-code go.sum echo 'Congratulations! All go modules changes are done the right way.'