From a580c5300463f3071ed02176bd4b507ee1cf551b Mon Sep 17 00:00:00 2001 From: "Tom \"Ravi\" Hale" Date: Sat, 1 Sep 2018 16:28:31 +0700 Subject: [PATCH] ls_with_file_shortcuts: print error to STDERR --- 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 583b77a..e3ca7f5 100644 --- a/lib/git/shell_shortcuts.sh +++ b/lib/git/shell_shortcuts.sh @@ -146,7 +146,7 @@ if [ "$shell_ls_aliases_enabled" = "true" ] && which ruby > /dev/null 2>&1; then # Bail if there are two many lines to process if [ "$(echo "$ll_output" | wc -l)" -gt "50" ]; then - echo -e "\033[33mToo many files to create shortcuts. Running plain ll command...\033[0m" + echo -e '\033[33mToo many files to create shortcuts. Running plain ll command...\033[0m' >&2 echo "$ll_output" return 1 fi