aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorKordan Ou <kordan@hitripod.com>2018-07-18 01:17:51 +0800
committerWei-Ning Huang <w@dexon.org>2018-07-18 01:17:51 +0800
commit6140e1b135ee01d2d17ca98c5e79155ec5851842 (patch)
tree30b60b85a249172c757062c335acc71e3daf9023 /bin
parent434c497f83c208b48c97d396513aa5deb5916b5a (diff)
downloaddexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.tar
dexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.tar.gz
dexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.tar.bz2
dexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.tar.lz
dexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.tar.xz
dexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.tar.zst
dexon-consensus-6140e1b135ee01d2d17ca98c5e79155ec5851842.zip
add README (#1)
* add README
Diffstat (limited to 'bin')
-rwxr-xr-xbin/install_tools.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/install_tools.sh b/bin/install_tools.sh
new file mode 100755
index 0000000..e22056b
--- /dev/null
+++ b/bin/install_tools.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if ! which dep >/dev/null 2>&1; then
+ go get -u github.com/golang/dep/cmd/dep
+fi
+if ! which golint >/dev/null 2>&1; then
+ go get -u github.com/golang/lint/golint
+fi