We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a0506 commit e0b0790Copy full SHA for e0b0790
flake.nix
@@ -36,9 +36,7 @@
36
pkgs.rust-bin.stable.latest.default.override { extensions = [ "rust-src" ]; }
37
}/lib/rustlib/src/rust/library";
38
};
39
- packages = {
40
- default = pkgsFor.${system}.callPackage ./. { };
41
- };
+ packages.default = callPackage ./. { };
42
}
43
);
44
src/cli.rs
@@ -10,7 +10,7 @@ use tap::Pipe as _;
10
11
use crate::commit::Commit;
12
13
-/// Patchy automatically
+/// A tool which makes it easy to declaratively manage personal forks by automatically merging pull requests
14
#[derive(Parser)]
15
#[command(version, styles = STYLES, long_about = None)]
16
pub struct Args {
0 commit comments