Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make '--color=yes' the default #122

Merged
merged 4 commits into from
May 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
make '--color=yes' the default
MHellmund committed May 6, 2024
commit 5de9fd0aa5fd46b04fcc48fc3db29895bcc60507
2 changes: 2 additions & 0 deletions src/server.jl
Original file line number Diff line number Diff line change
@@ -70,6 +70,8 @@ function _exeflags_and_env(options)
if !any(startswith("JULIA_PROJECT="), env) && !any(startswith("--project="), exeflags)
push!(exeflags, "--project=@.")
end
# if exeflags already contains '--color=no', the 'no' will prevail
pushfirst!(exeflags,"--color=yes")
return exeflags, env
end