Skip to content

Commit

Permalink
Change the color for EXEC to cyan
Browse files Browse the repository at this point in the history
Closes #2
  • Loading branch information
minoki committed Feb 2, 2020
1 parent 9354440 commit aaf999a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/cluttex
Original file line number Diff line number Diff line change
Expand Up @@ -2169,7 +2169,7 @@ local CMD = {

local function exec_msg(commandline)
if use_colors then
io.stderr:write(CMD.fg_x_white, CMD.bg_red, "[EXEC]", CMD.reset, " ", CMD.fg_red, commandline, CMD.reset, "\n")
io.stderr:write(CMD.fg_x_white, CMD.bg_red, "[EXEC]", CMD.reset, " ", CMD.fg_cyan, commandline, CMD.reset, "\n")
else
io.stderr:write("[EXEC] ", commandline, "\n")
end
Expand Down
2 changes: 1 addition & 1 deletion bin/cluttex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2172,7 +2172,7 @@ local CMD = {

local function exec_msg(commandline)
if use_colors then
io.stderr:write(CMD.fg_x_white, CMD.bg_red, "[EXEC]", CMD.reset, " ", CMD.fg_red, commandline, CMD.reset, "\n")
io.stderr:write(CMD.fg_x_white, CMD.bg_red, "[EXEC]", CMD.reset, " ", CMD.fg_cyan, commandline, CMD.reset, "\n")
else
io.stderr:write("[EXEC] ", commandline, "\n")
end
Expand Down
2 changes: 1 addition & 1 deletion src/texrunner/message.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ local CMD = {

local function exec_msg(commandline)
if use_colors then
io.stderr:write(CMD.fg_x_white, CMD.bg_red, "[EXEC]", CMD.reset, " ", CMD.fg_red, commandline, CMD.reset, "\n")
io.stderr:write(CMD.fg_x_white, CMD.bg_red, "[EXEC]", CMD.reset, " ", CMD.fg_cyan, commandline, CMD.reset, "\n")
else
io.stderr:write("[EXEC] ", commandline, "\n")
end
Expand Down

0 comments on commit aaf999a

Please sign in to comment.