renamed include guard variable

This commit is contained in:
Tobias Schmidl 2021-01-28 07:15:37 +01:00
parent 209ee956fa
commit 9eb17e952e

View file

@ -1,7 +1,7 @@
# Make sure we include this file only once
if [ -z $LOCAL_BIN_ALREADY_SET ];
if [ -z $ZSH_LOCAL_BIN_ALREADY_SET ];
then
export LOCAL_BIN_ALREADY_SET=1
export ZSH_LOCAL_BIN_ALREADY_SET=1
# set PATH so it includes user's private bin if it exists
[ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH"
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"