From 7b800bcbc03face1987fc696ff707ed4d01c47ef Mon Sep 17 00:00:00 2001 From: Joe Block Date: Mon, 11 Jul 2016 16:44:10 -0700 Subject: [PATCH] Switch to prepending ourself to `$PATH` --- git-open.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-open.plugin.zsh b/git-open.plugin.zsh index 4105dd0..49fbb9f 100644 --- a/git-open.plugin.zsh +++ b/git-open.plugin.zsh @@ -3,4 +3,4 @@ # Make git-open easy to install and keep up to date if you're using a # ZSH framework like Zgen or Antigen - export PATH=${PATH}:$(dirname $0) + export PATH=$(dirname $0):${PATH}