Compare commits
1 commit
13b36b2dcf
...
ed30340ed0
Author | SHA1 | Date | |
---|---|---|---|
ed30340ed0 |
2 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
|||
[package]
|
||||
name = "jpassmenu"
|
||||
description = "A simple program that uses dmenu compatible menu to select a password to type/copy"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -88,10 +88,10 @@ impl Opts {
|
|||
Some(store_dir)
|
||||
};
|
||||
// Prepare pass command
|
||||
let args = if typeit {
|
||||
vec!["show", selected]
|
||||
let args: &[&str] = if typeit {
|
||||
&["show", selected]
|
||||
} else {
|
||||
vec!["show", "-c", selected]
|
||||
&["show", "-c", selected]
|
||||
};
|
||||
let pass = cmd(pass_bin, args);
|
||||
let pass = if let Some(env) = set_env {
|
||||
|
|
Loading…
Add table
Reference in a new issue