1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-18 08:16:51 +00:00

Add 'go' in env/path.zsh

This commit is contained in:
mlunax 2020-07-11 02:41:53 +02:00
parent 193b4850ed
commit 298c834bba
No known key found for this signature in database
GPG key ID: 364432466E2171B9
2 changed files with 3 additions and 2 deletions

View file

@ -1,3 +1,3 @@
# Set Devs Tools
# [] = {flutter}
export devTools=""
# [] = {flutter, go}
export devTools=""

View file

@ -1,3 +1,4 @@
# Flutter
source $OTHER/env.zsh
grep -q 'flutter' <<< $devTools && export PATH="$PATH:$HOME/.development/flutter/bin"
grep -q 'go' <<< $devTools && export PATH="$PATH::/usr/local/go/bin"