diff options
author | Franck Cuny <franck@fcuny.net> | 2021-08-24 17:52:05 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-08-24 17:52:56 -0700 |
commit | d82eaa8ac20c7eaa9921d65af4b3ac58ff8be094 (patch) | |
tree | 2f2edaea8278b8f03e56ceddce6a169e1dd5e14d | |
parent | emacs: fix mapping for git-link and simplify code (diff) | |
download | emacs.d-d82eaa8ac20c7eaa9921d65af4b3ac58ff8be094.tar.gz |
zsh: add `fly` to the path
Diffstat (limited to '')
-rw-r--r-- | zshenv | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zshenv b/zshenv index 5a3cacb..72b5f51 100644 --- a/zshenv +++ b/zshenv @@ -4,3 +4,8 @@ export GOPATH=~/workspace/go export PAGER='less -R' alias add="arc diff --draft" + +if [ -d /home/fcuny/.fly ]; then + export FLYCTL_INSTALL="/home/fcuny/.fly" + export PATH="$FLYCTL_INSTALL/bin:$PATH" +fi |