sheldon 0.5.2

A fast, configurable, shell plugin manager.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::{panic, process};

fn run() {
    if sheldon::Sheldon::run().is_err() {
        process::exit(2);
    }
}

fn main() {
    if panic::catch_unwind(run).is_err() {
        eprintln!(
            "\nThis is probably a bug, please file an issue at \
             https://github.com/rossmacarthur/sheldon/issues."
        );
        process::exit(127);
    }
}