feat: v1.0.2, add feature harden_process
This commit is contained in:
@@ -36,6 +36,7 @@ fn main() {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "harden_process")]
|
||||
fn harden_process() {
|
||||
let ignore_harden_process_error = std::env::var("IGNORE_HARDEN_PROCESS_ERROR")
|
||||
.map(|v| &v == "true").unwrap_or_else(|_| false);
|
||||
@@ -75,6 +76,7 @@ fn inner_main() -> CommandError {
|
||||
let matches = app.get_matches();
|
||||
for command in &commands {
|
||||
if let Some(sub_cmd_matches) = matches.subcommand_matches(command.name()) {
|
||||
#[cfg(feature = "harden_process")]
|
||||
if command.name() == "serve" { harden_process(); }
|
||||
return command.run(&matches, sub_cmd_matches);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user