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.
2 parents 4657860 + 4ca59df commit 86cfee6Copy full SHA for 86cfee6
hack/install-maintainers.sh
@@ -1,5 +1,10 @@
1
#! /usr/bin/env bash
2
3
+if [ -z $GOPATH ]; then
4
+ echo "GOPATH must be set to run this script"
5
+ exit 1
6
+fi
7
+
8
# check if git tree is clean
9
git_tree_state=dirty
10
if git_status=$(git status --porcelain --untracked=no 2>/dev/null) && [[ -z "${git_status}" ]]; then
0 commit comments