Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
Fix trimming of whitespace in debug/font-issues.zsh
Browse files Browse the repository at this point in the history
  • Loading branch information
dritter committed Jul 23, 2018
1 parent f89a5bb commit ebd4414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debug/font-issues.zsh
Expand Up @@ -12,7 +12,7 @@ trim() {
set -f
# shellcheck disable=2048,2086
set -- $*
printf '%s\n' "${*//[[:space:]]/ }"
printf '%s\n' "${*//[[:space:]]/}"
set +f
}

Expand Down

0 comments on commit ebd4414

Please sign in to comment.