Remove alias info when calling help on an alias

This commit is contained in:
2012-04-22 19:37:27 +01:00
parent b81bdde8bb
commit 82ab5b47a7

View File

@@ -15,7 +15,6 @@ command_path="$(command -v "tmuxifier-$command" || true)"
if [ -z "$command_path" ]; then
resolved="$(tmuxifier-alias "$command")"
if [ ! -z "$resolved" ]; then
echo "'$command' is an alias for the '$resolved' command"
command="$resolved"
command_path="$(command -v "tmuxifier-$command" || true)"
fi