From ae6bb783e95676ebbc7bb9cf5bdcbdc956637bd0 Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Wed, 22 Aug 2012 19:46:15 +1200 Subject: [PATCH] Fixed 'll' for zsh --- lib/git/shell_shortcuts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/git/shell_shortcuts.sh b/lib/git/shell_shortcuts.sh index aeec43b..2417567 100644 --- a/lib/git/shell_shortcuts.sh +++ b/lib/git/shell_shortcuts.sh @@ -94,7 +94,7 @@ EOF # Set numbered file shortcut in variable local e=1 - for file in $($_ll_sys_command); do + for file in $(eval $_ll_sys_command); do # Use perl abs_path instead of readlink -f, since it should work on both OS X and Linux export $git_env_char$e="$(eval $_abs_path_command $file)" if [ "${scmbDebug:-}" = "true" ]; then echo "Set \$$git_env_char$e => $file"; fi