Skip to content

Commit

Permalink
style: changes the display of the env var from 'env:VAR: value' to 'e…
Browse files Browse the repository at this point in the history
…nv: VAR=value'
  • Loading branch information
kbknapp committed Nov 27, 2017
1 parent 4740cde commit 8a26ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ impl<'a> Help<'a> {
env.1
);
spec_vals.push(format!(
" [env:{}: {}]",
" [env: {}={}]",
env.0.to_string_lossy(),
env.1.map_or(Cow::Borrowed(""), |val| val.to_string_lossy())
));
Expand Down

0 comments on commit 8a26ff0

Please sign in to comment.