Skip to content

Commit

Permalink
fix: drop append -c in app.rs as it's already added in prepare_command
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Rabbito <arabbito@coreweave.com>
  • Loading branch information
anthr76 committed Sep 25, 2024
1 parent 3c9fa25 commit 7938154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl<S: Store> App<S> {
Some(ref shell_options) if !shell_options.is_empty() => {
shell_options.split(' ').map(|s| s.to_string()).collect()
}
_ => vec!["-c".to_string()],
_ => Vec::new(),
};
let is_exec = cli.is_exec || default_exec;
let shell = if is_exec {
Expand Down

0 comments on commit 7938154

Please sign in to comment.