diff --git a/src/command/setup.rs b/src/command/setup.rs index 2f1fd771b..bf3a25d04 100644 --- a/src/command/setup.rs +++ b/src/command/setup.rs @@ -183,7 +183,7 @@ If you run into problems running Volta, create {} and run `volta setup` again.", reader .lines() .filter(|line_result| match line_result { - Ok(line) if !line.contains("VOLTA") => true, + Ok(line) if !line.contains("VOLTA_HOME") => true, Ok(_) => false, Err(_) => true, })