From b79190366270b650e5f605cb0177bfcab83825ed Mon Sep 17 00:00:00 2001
From: Mark McGranaghan <mmcgrana@gmail.com>
Date: Thu, 1 Feb 2018 16:53:56 -0500
Subject: [PATCH] Explictly install golint

---
 bios.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bios.sh b/bios.sh
index cd16a0a..fabadba 100755
--- a/bios.sh
+++ b/bios.sh
@@ -6,6 +6,7 @@ run -s "Cloning"  git clone $URL --branch $REF --single-branch .
 git reset --hard $SHA
 
 go get github.com/russross/blackfriday
+go get github.com/golang/lint/golint
 
 PKGS=$(go list $PKG/... | grep -v examples/variables)
 run -s "Linting"  golint -set_exit_status $PKGS