aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2020-08-02 00:47:53 +0200
committerTeddy Wing2020-08-02 00:47:53 +0200
commit13710b49cc40c0e78eec9a94ce9b0ea8a09c3860 (patch)
tree0ded95e864a307ba733a9134f28df40273665873 /src
parentdff81f7b84c279d7e00fe7a885743605a2ac5b7e (diff)
downloadgit-suggestion-13710b49cc40c0e78eec9a94ce9b0ea8a09c3860.tar.bz2
git-sugpatch: Print error and exit on `Config::get` error
Add `exitcode` to exit with an appropriate code. Add the `gseprintln` macro to wrap `eprintln!()`, prefixing the output with "error: ".
Diffstat (limited to 'src')
-rw-r--r--src/bin/git-sugpatch.rs12
-rw-r--r--src/error.rs8
2 files changed, 19 insertions, 1 deletions
diff --git a/src/bin/git-sugpatch.rs b/src/bin/git-sugpatch.rs
index 04b687d..0159307 100644
--- a/src/bin/git-sugpatch.rs
+++ b/src/bin/git-sugpatch.rs
@@ -1,7 +1,10 @@
use std::env;
use std::process;
+use exitcode;
+
use github_suggestion::{Client, Suggestion, SuggestionUrl};
+use github_suggestion_cli::gseprintln;
use github_suggestion_cli::config::Config;
use github_suggestion_cli::error::Error;
use github_suggestion_cli::is_suggestion_id;
@@ -10,7 +13,14 @@ use github_suggestion_cli::is_suggestion_id;
fn main() {
let args: Vec<_> = env::args().collect();
- let config = Config::get(&args).unwrap();
+ let config = match Config::get(&args) {
+ Ok(c) => c,
+ Err(e) => {
+ gseprintln!(e);
+
+ process::exit(exitcode::DATAERR);
+ },
+ };
if config.suggestions.is_empty() {
process::exit(111);
diff --git a/src/error.rs b/src/error.rs
index c857bd2..bcca3e1 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -7,3 +7,11 @@ pub enum Error {
#[error("Unable to parse regex")]
Regex(#[from] regex::Error),
}
+
+
+#[macro_export]
+macro_rules! gseprintln {
+ ($arg:expr) => ({
+ eprintln!("error: {}", $arg);
+ })
+}