1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Fix trimming of whitespace in debug/font-issues.zsh

This commit is contained in:
Dominik Ritter 2018-07-23 02:16:03 +02:00
parent f89a5bb365
commit ebd4414c29

View file

@ -12,7 +12,7 @@ trim() {
set -f
# shellcheck disable=2048,2086
set -- $*
printf '%s\n' "${*//[[:space:]]/ }"
printf '%s\n' "${*//[[:space:]]/}"
set +f
}