diff options
Diffstat (limited to 'src/command/client/import.rs')
| -rw-r--r-- | src/command/client/import.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/command/client/import.rs b/src/command/client/import.rs index 7e2f5c5c..a4964c51 100644 --- a/src/command/client/import.rs +++ b/src/command/client/import.rs @@ -50,6 +50,9 @@ impl Cmd { } else if shell.ends_with("/fish") { println!("Detected Fish"); import::<Fish<_>, _>(db, BATCH_SIZE).await + } else if shell.ends_with("/bash") { + println!("Detected Bash"); + import::<Bash<_>, _>(db, BATCH_SIZE).await } else { println!("cannot import {} history", shell); Ok(()) |
