Before: ```bash $ cargo +nightly new --lib foo && command cd foo && cargo +nightly fix --lib Created library `foo` project Checking foo v0.1.0 (file:///Users/dnw/Desktop/foo) error: failed to execute compile caused by: Bad relative path error: Could not compile `foo`. ``` After: ```bash $ unset RUSTC_WRAPPER; cargo +nightly new --lib foo && command cd foo && cargo +nightly fix --lib Created library `foo` project Checking foo v0.1.0 (file:///Users/dnw/Desktop/foo) Finished dev [unoptimized + debuginfo] target(s) in 0.82s ```