diff options
author | dundargoc <gocdundar@gmail.com> | 2022-10-30 13:50:41 +0100 |
---|---|---|
committer | dundargoc <gocdundar@gmail.com> | 2022-11-01 18:37:21 +0100 |
commit | 502b5ee10fedc97e1455e7365a10c9bad7268c67 (patch) | |
tree | 76e48e2ff97cd7725d06f3e9a9521861584f6f12 /scripts/update_terminfo.sh | |
parent | aeb87f8b4a87e99c392e7ec11b29b715e1f31ac3 (diff) | |
download | rneovim-502b5ee10fedc97e1455e7365a10c9bad7268c67.tar.gz rneovim-502b5ee10fedc97e1455e7365a10c9bad7268c67.tar.bz2 rneovim-502b5ee10fedc97e1455e7365a10c9bad7268c67.zip |
build(lint): add more shell scripts to lintsh
Diffstat (limited to 'scripts/update_terminfo.sh')
-rwxr-xr-x | scripts/update_terminfo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update_terminfo.sh b/scripts/update_terminfo.sh index 8a0937cc8c..775048f246 100755 --- a/scripts/update_terminfo.sh +++ b/scripts/update_terminfo.sh @@ -35,7 +35,7 @@ readonly -A entries=( db="$(mktemp -du)" print_bold() { - printf "\\e[1m$*\\e[0m" + printf "\\e[1m%b\\e[0m" "$*" } cd "$(git rev-parse --show-toplevel)" |