Created
October 5, 2018 18:43
-
-
Save ColinSullivan1/688caa9586c10406d6b9585c95b52823 to your computer and use it in GitHub Desktop.
install-nats-client-sim.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget https://dl.google.com/go/go1.11.1.linux-amd64.tar.gz | |
tar -zxvf go1.11.1.linux-amd64.tar.gz -C $HOME | |
export PATH=$HOME/go/bin:$PATH | |
export GOPATH=$HOME/gopath | |
export GOROOT=$HOME/go | |
echo "Getting nats-client-sim" | |
go get github.com/ColinSullivan1/nats-client-sim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment