diff options
author | Kordan Ou <kordan@hitripod.com> | 2018-07-18 01:17:51 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-07-18 01:17:51 +0800 |
commit | 6140e1b135ee01d2d17ca98c5e79155ec5851842 (patch) | |
tree | 30b60b85a249172c757062c335acc71e3daf9023 /bin | |
parent | 434c497f83c208b48c97d396513aa5deb5916b5a (diff) | |
download | dexon-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-x | bin/install_tools.sh | 8 |
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 |