Merge pull request #3 from ams-hash/crash_bug_fix

Fixed bug where it crashed if no input was entered
This commit is contained in:
Able 2021-11-06 20:33:27 -05:00 committed by GitHub
commit 7467ba380c

View file

@ -22,6 +22,10 @@ fn main() {
let mut previous_command = None;
while let Some(command) = commands.next() {
if command.is_empty() {
continue;
}
// everything after the first whitespace character is interpreted as args to the command
let mut parts = command.trim().split_whitespace();
let command = parts.next().unwrap();