Skip to content

Commit

Permalink
fix: correctly closes escape sequence in message 'Checking dependenci…
Browse files Browse the repository at this point in the history
…es…' (#1272)

Co-authored-by: port19 <[email protected]>
  • Loading branch information
ochaton and port19x authored Feb 3, 2024
1 parent 3ab2b87 commit 08aff13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ani-cli
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

version_number="4.7.4"
version_number="4.7.5"

# UI

Expand Down Expand Up @@ -373,7 +373,7 @@ while [ $# -gt 0 ]; do
done
[ "$use_external_menu" = "0" ] && multi_selection_flag="${ANI_CLI_MULTI_SELECTION:-"-m"}"
[ "$use_external_menu" = "1" ] && multi_selection_flag="${ANI_CLI_MULTI_SELECTION:-"-multi-select"}"
printf "\33[2K\r\033[1;34mChecking dependencies...\033\n[0m"
printf "\33[2K\r\033[1;34mChecking dependencies...\033[0m\n"
dep_ch "curl" "sed" "grep" || true
[ "$skip_intro" = 1 ] && (dep_ch "ani-skip" || true)
if [ -z "$ANI_CLI_NON_INTERACTIVE" ]; then dep_ch fzf || true; fi
Expand Down

0 comments on commit 08aff13

Please sign in to comment.