summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
-rw-r--r--src/main.rs9
2 files changed, 10 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 595e3ec..5e33302 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -41,4 +41,6 @@ pub enum ShackleError {
UserReadError,
#[error("Path is not accessible")]
InvalidDirectory,
+ #[error("`{0}`")]
+ CustomError(String),
}
diff --git a/src/main.rs b/src/main.rs
index 4333866..d7a633f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -11,7 +11,14 @@ struct Args {
command: Option<String>,
}
-fn main() -> Result<(), ShackleError> {
+fn main() {
+ if let Err(e) = main_inner() {
+ eprintln!("{}", e);
+ std::process::exit(1);
+ }
+}
+
+fn main_inner() -> Result<(), ShackleError> {
let args = Args::parse();
match args.command {
Some(user_input) => {