From 24d0c3b2ab835e7c037f62231ceb26b713d5df7f Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Sun, 8 Aug 2021 13:09:21 -0500 Subject: [PATCH] Bump to v0.9.5 and update couple of cli descriptions --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/cli/opt.rs | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df149c4c..a1fc3923 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ [[package]] name = "distant" -version = "0.9.4" +version = "0.9.5" dependencies = [ "bytes", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index c4013ab7..b334719d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" diff --git a/src/cli/opt.rs b/src/cli/opt.rs index d746ae9b..0eb604d2 100644 --- a/src/cli/opt.rs +++ b/src/cli/opt.rs @@ -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, @@ -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,