do not use Go on ubuntu trusty

This commit is contained in:
Cyryl Płotnicki-Chudyk 2016-08-04 17:59:32 +02:00
parent d13f01ebb5
commit aa43c35e4f
2 changed files with 7 additions and 5 deletions

View file

@ -93,12 +93,13 @@ cd "$DIR/.vim/bundle/YouCompleteMe/"
git submodule update --init --recursive
./install.py --racer-completer --clang-completer
# go
export GOPATH="$HOME/go"
mkdir -p "$GOPATH"
if [[ -z $NO_GO ]]; then
export GOPATH="$HOME/go"
mkdir -p "$GOPATH"
# excercism
go get -u github.com/exercism/cli/exercism
# excercism
go get -u github.com/exercism/cli/exercism
fi
# talks: reveal-md
sudo npm install -g reveal-md

View file

@ -22,4 +22,5 @@ fi
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DIR="$DIR/../../"
export NO_GO=true
DIR="$DIR" $DIR/common/configure_fresh_system