Skip to content

Commit

Permalink
fix bug where command mode is never reachable
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdypepper committed Mar 31, 2019
1 parent c58bcfd commit a4b60c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ fn parse_arguments() -> Configuration {
.get_matches();

let mut input = String::new();
if let Some(i) = config.value_of("input") {
if let Some(i) = config.value_of("INPUT") {
input.push_str(i);
};
Configuration {
Expand Down

0 comments on commit a4b60c7

Please sign in to comment.