diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-05-13 17:40:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 17:40:50 +0200 |
commit | 939a070c8cbe77626e07a01646c324b2ae5ac740 (patch) | |
tree | fed6f4053e2185380b9acabf17c1cf3b64e9d119 /cli/tools/standalone.rs | |
parent | b543e84b399ccfff9446d19c3b4cc55dab85c039 (diff) |
feat: add --no-config flag (#14555)
This flag disables loading of configuration file, ie. it will not be
automatically discovered and loaded. Of course this flag conflicts
with "--config" flag and they cannot be used together.
Diffstat (limited to 'cli/tools/standalone.rs')
-rw-r--r-- | cli/tools/standalone.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/standalone.rs b/cli/tools/standalone.rs index 9f24b5f08..d682ed88c 100644 --- a/cli/tools/standalone.rs +++ b/cli/tools/standalone.rs @@ -264,7 +264,7 @@ pub fn compile_to_runtime_flags( cache_blocklist: vec![], cache_path: None, cached_only: false, - config_path: None, + config_flag: Default::default(), coverage_dir: flags.coverage_dir.clone(), enable_testing_features: false, ignore: vec![], |