diff options
author | merakor <cem@ckyln.com> | 2021-07-22 09:31:17 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2021-07-22 09:31:17 +0000 |
commit | 18433331de86b478ef7048c102f7a99c69966d06 (patch) | |
tree | a28912cb52cc438d4c8b54f312fe8e0f011ef6ec /src | |
parent | 31ec224db55bb90c451b121fcc03b36f4fff5d5e (diff) | |
download | cpt-18433331de86b478ef7048c102f7a99c69966d06.tar.gz |
cpt-lib: change default log color
FossilOrigin-Name: 2638da5faf49a1186b07ab01914a75eb55751269ae9a91bb9803605d88372a9e
Diffstat (limited to 'src')
-rw-r--r-- | src/cpt-lib.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpt-lib.in b/src/cpt-lib.in index 4b4d039..306c5bd 100644 --- a/src/cpt-lib.in +++ b/src/cpt-lib.in @@ -2154,7 +2154,7 @@ create_cache() { # colors. This can of course be overriden if the user specifically want # colors during piping. if { [ "$CPT_COLOR" != 0 ] && [ -t 1 ] ;} || [ "$CPT_COLOR" = 1 ]; then - colory="\033[1;33m" colorb="\033[1;36m" colre="\033[m" + colory="\033[1;33m" colorb="\033[1;34m" colre="\033[m" fi } |