From 41b9bac3ec8bd9489bbbd491f5e8236aa57f49cd Mon Sep 17 00:00:00 2001 From: Carlos Cardoso Date: Wed, 18 Dec 2013 12:52:56 -0200 Subject: [PATCH] Added appengine to path for linux. --- templates/zshrc-linux.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/zshrc-linux.zsh b/templates/zshrc-linux.zsh index e3caafa37..4fb6b37fb 100644 --- a/templates/zshrc-linux.zsh +++ b/templates/zshrc-linux.zsh @@ -40,6 +40,7 @@ if [ -z "$LC_ALL" ]; then export LC_ALL=en_US.UTF-8; fi if [ -z "$LANG" ]; then export LANG=en_US.UTF-8; fi if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi +if [ -e $HOME/appengine ]; then export PATH="$HOME/appengine:$PATH"; fi if [ -e $HOME/.cabal/bin ]; then export PATH="$HOME/.cabal/bin:$PATH"; fi [ "$TERM" = "xterm" ] && TERM="xterm-256color"