From 44fe368f73470bd609dbd499b364e3b9df1ce074 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Mon, 11 Jul 2022 13:17:06 -0700 Subject: [PATCH] go update 1.18 --- dotfiles/bash/bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc index 105dbd6..a169de8 100644 --- a/dotfiles/bash/bashrc +++ b/dotfiles/bash/bashrc @@ -44,8 +44,8 @@ if [[ ! -d $HOME/projects ]]; then fi if [[ -x go ]]; then - echo "Making $HOME/projects/go" - mkdir -p $HOME/projects/go + echo "Making $HOME/.go" + mkdir -p $HOME/.go fi @@ -132,7 +132,7 @@ export HISTCONTROL=ignoredups # If go is installed, set the $GOPATH to the projects directory created above. -if which go > /dev/null; then export GOPATH=$HOME/projects/go; fi +if which go > /dev/null; then export GOPATH=$HOME/.go; fi # ------------ END EXPORTS ------------#