Browse Source

Fix issue

Samuel W. Flint 1 year ago
parent
commit
3b733788e8
4 changed files with 5 additions and 5 deletions
  1. 1 1
      Cargo.lock
  2. 1 1
      Cargo.toml
  3. 2 2
      flake.nix
  4. 1 1
      src/main.rs

+ 1 - 1
Cargo.lock

@@ -185,7 +185,7 @@ dependencies = [
 
 [[package]]
 name = "sync-it"
-version = "2.1.0"
+version = "2.1.1"
 dependencies = [
  "clap",
  "clap_complete",

+ 1 - 1
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "sync-it"
-version = "2.1.0"
+version = "2.1.1"
 authors = ["Samuel W. Flint <swflint@flintfam.org>"]
 edition = "2018"
 

+ 2 - 2
flake.nix

@@ -17,11 +17,11 @@
 
           sync-it = pkgs.rustPlatform.buildRustPackage rec {
             name = "sync-it";
-            version = "2.1.0";
+            version = "2.1.1";
 
             src = ./.;
 
-            cargoSha256 = "RKuq0bhyw1kcBEn7c8QF5XcUcgOtwnolmvZEcxrcbzA=";
+            cargoSha256 = "mSRv5lUT2iHSj1laQNvoEWpwgO3lVzLjBBVdMsNZ//g=";
 
             meta = {
               description = "A simple, customizable synchronization tool.";

+ 1 - 1
src/main.rs

@@ -163,7 +163,7 @@ fn build_cli() -> Command {
                                      .value_name("GROUP")))
                     .subcommand(Command::new("add")
                                 .about("Add a repo to a group")
-                                .arg(Arg::new("name")
+                                .arg(Arg::new("group")
                                      .help("Name of group")
                                      .required(true)
                                      .value_name("GROUP"))