Skip to content

Commit

Permalink
refactor: add empty single quotes where possible
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Larson <[email protected]>
  • Loading branch information
LucasLarson committed Aug 11, 2024
1 parent 7b1278a commit 9698aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
;;
Expand Down

0 comments on commit 9698aa2

Please sign in to comment.