Files
cuddle-please/crates/cuddle-please/src/main.rs
kjuulh 5fd902f87c
All checks were successful
continuous-integration/drone/push Build is passing
feat: enable commit bodies in changelog and fixes general warnings and updates (#49)
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>
2025-01-09 23:46:07 +01:00

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(())
}