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

pull/22/head
Dominik Ritter 6 years ago
parent f89a5bb365
commit ebd4414c29

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

Loading…
Cancel
Save