We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1feeaec commit 47be8a6Copy full SHA for 47be8a6
scripts/vet-proto.sh
@@ -1,4 +1,4 @@
1
-#!/bin/bash
+#!/bin/bash
2
3
set -ex # Exit on error; debugging enabled.
4
set -o pipefail # Fail a pipe if any sub-command fails.
scripts/vet.sh
@@ -90,7 +90,7 @@ for MOD_FILE in $(find . -name 'go.mod'); do
90
go mod tidy -compat=1.21
91
git status --porcelain 2>&1 | fail_on_output || \
92
(git status; git --no-pager diff; exit 1)
93
-
+
94
# - Collection of static analysis checks
95
SC_OUT="$(mktemp)"
96
staticcheck -go 1.21 -checks 'all' ./... >"${SC_OUT}" || true
0 commit comments