Skip to content

Commit

Permalink
v0.1.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluisq committed Feb 20, 2021
1 parent fc9fa23 commit 8a266e7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "paket"
version = "0.1.0-beta.4"
description = "A simple package manager for the Fish shell"
version = "0.1.0-beta.5"
description = "A simple and fast package manager for the Fish shell"
license = "MIT OR Apache-2.0"
authors = ["Jose Quintana <git.io/joseluisq>"]
keywords = [
Expand Down
8 changes: 4 additions & 4 deletions src/cli/commands.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use structopt::StructOpt;

/// A simple package manager for the Fish shell 📦
/// A simple and fast package manager for the Fish shell 📦
#[derive(Debug, StructOpt)]
pub struct CommandOpts {
#[structopt(subcommand)]
Expand All @@ -9,7 +9,7 @@ pub struct CommandOpts {

#[derive(Debug, StructOpt)]
pub enum Commands {
/// Add a new package from a local or remote repository
/// Install a new package from a local or remote repository.
#[structopt(name = "add")]
Add {
#[structopt(short = "p", long, default_value = "github")]
Expand All @@ -19,14 +19,14 @@ pub enum Commands {
pkg_name: String,
},

/// Update an existing package
/// Update an existing package from a local or remote repository.
#[structopt(name = "up")]
Update {
/// Package name. E.g joseluisq/gitnow
pkg_name: String,
},

/// Remove an existing package
/// Uninstall an existing package from a local or remote repository.
#[structopt(name = "rm")]
Remove {
/// Package name. E.g joseluisq/gitnow
Expand Down

0 comments on commit 8a266e7

Please sign in to comment.