Skip to content

Commit 397a7bb

Browse files
author
Sandesh Grangdan
committed
fix: e2s config.toml path
1 parent fdb0140 commit 397a7bb

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "e2s"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55

66
# Github Repo

src/app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ pub mod input;
2020
pub enum SelectedTab {
2121
List,
2222
Details,
23-
}
23+
}
2424

2525
// ANCHOR_END: action
26-
/// AWS Systems Manager - Parameter Store TUI Client
26+
/// A TUI for managing AWS EC2 SSH access
2727
#[derive(Parser, Debug, Default, Clone)]
2828
#[command(version, about, long_about = None)]
2929
pub struct Args {

src/app/input/ssh_user.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ impl SshUsers {
7676
fn get_config_path() -> Option<PathBuf> {
7777
let mut path = dirs::home_dir()?;
7878
path.push(".config");
79-
path.push("ec2");
79+
path.push("e2s");
8080
path.push("config.toml");
8181
Some(path)
8282
}

0 commit comments

Comments
 (0)