Quellcode durchsuchen

Take new Go and Terraform installs into account

Brendan Abolivier vor 6 Jahren
Ursprung
Commit
a261ab6043
Signiert von: Brendan Abolivier <contact@brendanabolivier.com> GPG Schlüssel ID: 8EF1500759F70623
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen
  1. 4
    1
      .bashrc

+ 4
- 1
.bashrc Datei anzeigen

@@ -1,6 +1,7 @@
1 1
 source /etc/bash.bashrc
2 2
 
3
-export GOPATH="/home/brendan/go"
3
+export GOROOT="/usr/local/go"
4
+export GOPATH="$HOME/go"
4 5
 export EDITOR="vim"
5 6
 
6 7
 # Path
@@ -9,9 +10,11 @@ export PATH="$PATH:/usr/local/bin/matlab"
9 10
 export PATH="/usr/sbin:/sbin:/bin:/usr/games:$PATH"
10 11
 export PATH="$HOME/.cargo/bin:$PATH"
11 12
 export PATH="$HOME/.bin:$PATH"
13
+export PATH="$GOROOT/bin:$PATH"
12 14
 export PATH="$GOPATH/bin:$PATH"
13 15
 export PATH="$PATH:/bin"
14 16
 export PATH="$PATH:/home/brendan/.gem/ruby/2.5.0/bin"
17
+export PATH="$PATH:/home/brendan/terraform"
15 18
 
16 19
 # Shortcuts
17 20