All checks were successful
continuous-integration/drone/push Build is passing
Allows commit bodies to show up in release notes, this is something I'd prefer as my releases are usually short, and I'd like to see these as I don't use pull requests as often, and often miss the context, as I don't link to commits currently. Also fixes a lot of warnings and reintroduces failing tests, still not perfect, but better than before. Co-authored-by: kjuulh <contact@kjuulh.io> Co-committed-by: kjuulh <contact@kjuulh.io>
13 lines
268 B
Rust
13 lines
268 B
Rust
use cuddle_please_commands::PleaseCommand;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
dotenvy::dotenv().ok();
|
|
|
|
let current_dir = std::env::current_dir().ok();
|
|
let current_dir = current_dir.as_deref();
|
|
|
|
PleaseCommand::new().execute(current_dir)?;
|
|
|
|
Ok(())
|
|
}
|