Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Fix aliases
Browse files Browse the repository at this point in the history
Signed-off-by: Ari Archer <[email protected]>
  • Loading branch information
Ari Archer committed May 17, 2022
1 parent f5ea0b4 commit 12b95e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion baz
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[ "$BAZ_DEBUG" ] && set -x

export BAZ_VERSION='1.0.5'
export BAZ_VERSION='1.0.6'
export BAZ_DIR="$HOME/.local/share/baz"
export BAZ_CONFDIR="$HOME/.config/baz"
export BAZ_CONF="$BAZ_CONFDIR/config.env"
Expand Down
2 changes: 1 addition & 1 deletion baz_loader.sht
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ __baz_load_aliases() {
[ ! "$_alias_name" ] && continue

__baz_vecho "Loading alias '$_alias_name'"
eval "alias $_alias_name=\"source '$_baz_alias'\""
eval "alias $_alias_name=\"$(cat -- "$_baz_alias")\""
done
fi
done
Expand Down

0 comments on commit 12b95e4

Please sign in to comment.