Skip to content

Commit

Permalink
Cache build: use -D message.no-color (#123)
Browse files Browse the repository at this point in the history
Since cache build output only shows on Output tab which doesn't support colors
  • Loading branch information
kLabz authored Jul 3, 2024
1 parent 043df2a commit 792bf73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haxeLanguageServer/server/HaxeServer.hx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class HaxeServer {
startProgress("Building Cache");

// see vshaxe/haxe-language-server#44 for explanation
final leadingArgs = ["--no-output", "--each", "--no-output"];
final leadingArgs = ["--no-output", "--each", "--no-output", "-D", "message.no-color"];

process("cache build", leadingArgs.concat(context.config.displayArguments), null, true, null, Processed(function(_) {
stopProgress();
Expand Down

0 comments on commit 792bf73

Please sign in to comment.