From 245c776755c6fb17e3cfdc89025adf06924af03d Mon Sep 17 00:00:00 2001 From: Joe Block Date: Tue, 12 Jul 2016 13:34:48 -0500 Subject: [PATCH] Prepend ourself to `$PATH` instead of append --- bitbucket-git-helpers.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbucket-git-helpers.plugin.zsh b/bitbucket-git-helpers.plugin.zsh index d1df334..a6a336c 100644 --- a/bitbucket-git-helpers.plugin.zsh +++ b/bitbucket-git-helpers.plugin.zsh @@ -16,4 +16,4 @@ # Add our plugin's bin diretory to user's path PLUGIN_D=$(dirname "$0") -export PATH="${PATH}:${PLUGIN_D}/bin" +export PATH="${PLUGIN_D}/bin:${PATH}"