Skip to content

Commit

Permalink
Merge pull request #2812 from jonhoo/how-infinite
Browse files Browse the repository at this point in the history
Bump recursion limit to 20
  • Loading branch information
rbtcollins authored Jun 30, 2021
2 parents 08972a6 + 61d4637 commit c30ac62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/env_var.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::process::Command;

use crate::process;

pub const RUST_RECURSION_COUNT_MAX: u32 = 5;
pub const RUST_RECURSION_COUNT_MAX: u32 = 20;

#[allow(unused)]
pub fn append_path(name: &str, value: Vec<PathBuf>, cmd: &mut Command) {
Expand Down

0 comments on commit c30ac62

Please sign in to comment.