Skip to content

Commit

Permalink
feature(turbo-shim): Add message to inform users that we are running …
Browse files Browse the repository at this point in the history
…local turbo (vercel#2990)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
NicholasLYang and kodiakhq[bot] authored Dec 14, 2022
1 parent 043d3d6 commit a52a5c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/turborepo-lib/src/shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,12 @@ impl RepoState {
}

fn spawn_local_turbo(&self, local_turbo_path: &Path, mut shim_args: ShimArgs) -> Result<i32> {
let cwd = self.root.canonicalize()?;
println!(
"Running local turbo binary in {}\n",
local_turbo_path.display()
);

let cwd = self.root.canonicalize()?;
let mut raw_args: Vec<_> = if self.local_turbo_supports_skip_infer()? {
vec!["--skip-infer".to_string()]
} else {
Expand Down

0 comments on commit a52a5c8

Please sign in to comment.