From 9698aa2338845508fa0ce6acbc9a4b2b74cc1760 Mon Sep 17 00:00:00 2001 From: Lucas Larson Date: Sun, 11 Aug 2024 18:08:34 -0400 Subject: [PATCH] refactor: add empty single quotes where possible Signed-off-by: Lucas Larson --- custom/aliases.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/aliases.zsh b/custom/aliases.zsh index c907f40595..e52aac6850 100644 --- a/custom/aliases.zsh +++ b/custom/aliases.zsh @@ -954,13 +954,13 @@ git_all_files_ever() { case "${1-}" in -D | --deleted) # list only files that have been deleted - command git log --pretty= --name-only --all --diff-filter=D | + command git log --pretty='' --name-only --all --diff-filter=D | LC_ALL='C' command sort -u | command awk -- '{print "./" $0}' ;; *) # list all files ever - command git log --pretty= --name-only --all | + command git log --pretty='' --name-only --all | LC_ALL='C' command sort -u | command awk -- '{print "./" $0}' ;;