Skip to content

Commit

Permalink
fixing CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
josehelps committed Nov 18, 2019
1 parent 856056c commit ff8d9ae
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ apt-run: &apt-install
sudo apt update -qq
sudo apt install -y python-dev -qq
# install go for other testing tools
rm goinstall.sh
rm -rf ~/.go
# but first lets clean up the env
if [ -f goinstall.sh ]; then
rm goinstall.sh
fi
if [ -d ~/.go ]; then
rm -rf ~/.go
fi
wget https://raw.githubusercontent.com/canha/golang-tools-install-script/master/goinstall.sh
sudo chown circleci goinstall.sh
chmod +x goinstall.sh
Expand Down

0 comments on commit ff8d9ae

Please sign in to comment.