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 1a391db commit 4609957Copy full SHA for 4609957
scripts/golint.sh
@@ -1,11 +1,12 @@
1
#!/bin/sh
2
3
-set -e
+# intentionally NOT `set -e` to simplify checks before exiting,
4
+# make changes with care
5
6
# refresh deps
-make tidy
7
+make tidy || exit 1
8
# regenerate, format, and make sure everything builds
-make build
9
+make build || exit 1
10
11
# intentionally capture stderr, so status-errors are also PR-failing.
12
# in particular this catches "dubious ownership" failures, which otherwise
0 commit comments