Skip to content

Commit

Permalink
Bump to v0.9.5 and update couple of cli descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
chipsenkbeil committed Aug 8, 2021
1 parent fac7687 commit 24d0c3b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "distant"
description = "Operate on a remote computer through file and process manipulation"
categories = ["command-line-utilities"]
version = "0.9.4"
version = "0.9.5"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand Down
7 changes: 5 additions & 2 deletions src/cli/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ pub struct ActionSubcommand {
/// Currently, there are two possible formats:
///
/// 1. "json": printing out JSON for external program usage
///
/// 2. "shell": printing out human-readable results for interactive shell usage
#[structopt(
short,
Expand Down Expand Up @@ -370,11 +371,13 @@ pub struct LaunchSubcommand {
)]
pub mode: Mode,

/// Path to distant program to execute via ssh
/// Path to distant program on remote machine to execute via ssh;
/// by default, this program needs to be available within PATH as
/// specified when compiling ssh (not your login shell)
#[structopt(long, default_value = "distant")]
pub distant: String,

/// Path to ssh program to execute
/// Path to ssh program on local machine to execute
#[structopt(long, default_value = "ssh")]
pub ssh: String,

Expand Down

0 comments on commit 24d0c3b

Please sign in to comment.