Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
fix(toolchain): disable term color by default for backend
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Oct 7, 2024
1 parent 034c00e commit 2dfd65a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/toolchain/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ pub async fn build_backend_command_raw(mut opts: BackendCommandOpts) -> Result<C
"BACKEND_DATA_DIR".into(),
backend_data_dir.display().to_string(),
);
opts.env
.insert("RIVET_BACKEND_TERM_COLOR".into(), "never".into());

// Add development Postgres URL if not already specified
//
Expand Down

0 comments on commit 2dfd65a

Please sign in to comment.