point to aliases correctly

This commit is contained in:
Joe Lillibridge 2024-10-30 13:35:16 -05:00
parent 944dda758e
commit da21457f0e
No known key found for this signature in database

View File

@ -59,6 +59,9 @@ if [ "$system_type" = "Darwin" ]; then
[ ! -v "$IN_VS_CODE_TERMINAL" ] && alias iterm="open -a iTerm" [ ! -v "$IN_VS_CODE_TERMINAL" ] && alias iterm="open -a iTerm"
fi fi
if [ -e ./aliases.local ]; then if [ -e "${0:a:h}"/aliases.local ]; then
source ./aliases.local source "${0:a:h}"/aliases.local
else
echo "$(pwd): Couldn't find aliases.local!"
echo "Maybe: ${0:a:h}/aliases.local"
fi fi