From 2e4c9d0de8108a07ca512e4de6f2c2c24e8b6cd7 Mon Sep 17 00:00:00 2001 From: Gustavo Nascimento <91634598+gustavokurtz@users.noreply.github.com> Date: Tue, 16 Sep 2025 03:39:45 -0300 Subject: [PATCH] fix: correct ANSI escape sequence in boot branch message (#1689) The branch message had an incomplete ANSI escape sequence that was cutting off the first character and breaking the display formatting. Before: \eUsing branch: master (displayed as 'sing branch: master') After: \e[32mUsing branch: master\e[0m (displayed as 'Using branch: master' in green) This fix ensures the complete message is displayed with proper green coloring. --- boot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.sh b/boot.sh index 9b6242e..9593f75 100755 --- a/boot.sh +++ b/boot.sh @@ -29,7 +29,7 @@ git clone "https://github.com/${OMARCHY_REPO}.git" ~/.local/share/omarchy >/dev/ # Use custom branch if instructed, otherwise default to master OMARCHY_REF="${OMARCHY_REF:-master}" if [[ $OMARCHY_REF != "master" ]]; then - echo -e "\eUsing branch: $OMARCHY_REF" + echo -e "\e[32mUsing branch: $OMARCHY_REF\e[0m" cd ~/.local/share/omarchy git fetch origin "${OMARCHY_REF}" && git checkout "${OMARCHY_REF}" cd -