Skip to content

Commit

Permalink
Fix color definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
quintenbuis committed Dec 7, 2024
1 parent f2e40e1 commit 0357939
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Generator/GeneredTaskfile/taskfile-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ function project:update {

set -eo pipefail

BLUE=$(printf '\\033[36m')
YELLOW=$(printf '\\033[33m')
RED=$(printf '\\033[31m')
GREEN=$(printf '\\033[32m')
RESET=$(printf '\\033[0m')
BLUE=$(printf '\033[36m')
YELLOW=$(printf '\033[33m')
RED=$(printf '\033[31m')
GREEN=$(printf '\033[32m')
RESET=$(printf '\033[0m')

[[globals]]

Expand Down

0 comments on commit 0357939

Please sign in to comment.