Skip to content

Commit 0357939

Browse files
committed
Fix color definitions
1 parent f2e40e1 commit 0357939

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/Generator/GeneredTaskfile/taskfile-base.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ function project:update {
4040

4141
set -eo pipefail
4242

43-
BLUE=$(printf '\\033[36m')
44-
YELLOW=$(printf '\\033[33m')
45-
RED=$(printf '\\033[31m')
46-
GREEN=$(printf '\\033[32m')
47-
RESET=$(printf '\\033[0m')
43+
BLUE=$(printf '\033[36m')
44+
YELLOW=$(printf '\033[33m')
45+
RED=$(printf '\033[31m')
46+
GREEN=$(printf '\033[32m')
47+
RESET=$(printf '\033[0m')
4848

4949
[[globals]]
5050

0 commit comments

Comments
 (0)