ref(fish): set is local by default

This commit is contained in:
Léana 江 2023-05-06 17:19:00 +02:00 committed by Léana 江
parent 35e733418f
commit c33a8aaea8
7 changed files with 15 additions and 15 deletions

View file

@ -5,7 +5,7 @@ function largest-objects-in-repo
# translated to fish with ChatGPT, reviewed by Léana :P
# set the internal field spereator to line break, so that we can iterate easily over the verify-pack output
set -fx IFS "\n"
set -x IFS "\n"
# list all objects including their size, sort by size, take top 10
set objects (git verify-pack -v .git/objects/pack/pack-*.idx | grep -v chain | sort -k3nr | head)