diff options
author | iximeow <me@iximeow.net> | 2023-06-27 01:51:12 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-06-27 01:51:12 -0700 |
commit | 9935497b37ece1317dbcc849b295b33410e0ffca (patch) | |
tree | 64f3e8bcfaa088b01ab5f01312a10c88a6a61de6 | |
parent | 3b311571c92da4be6908c7b7d32b1b46b7224926 (diff) |
[cli] support same notifiers as db will validate
-rw-r--r-- | src/ci_ctl.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci_ctl.rs b/src/ci_ctl.rs index 6abb829..36eada5 100644 --- a/src/ci_ctl.rs +++ b/src/ci_ctl.rs @@ -151,7 +151,7 @@ fn main() { "github" => { assert!(NotifierConfig::github_from_file(&full_config_file_path).is_ok()); } - "email" => { + "github-email" => { assert!(NotifierConfig::email_from_file(&full_config_file_path).is_ok()); } other => { @@ -187,7 +187,7 @@ fn main() { "github" => { NotifierConfig::github_from_file(&config_file).unwrap(); } - "email" => { + "github-email" => { NotifierConfig::email_from_file(&config_file).unwrap(); } other => { |