This commit is contained in:
♥ Minnie ♥ 2025-06-10 11:27:26 +08:00
parent 998fc9cdca
commit deeb4bc86f
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,8 +1,8 @@
mod core; mod core;
use crate::core::*; use core::*;
mod inbuilt; mod inbuilt;
use crate::inbuilt::*; use inbuilt::*;
use mlua::prelude::*; use mlua::prelude::*;
@ -57,7 +57,7 @@ fn main() {
args.extend(get_args(&alias_tokens)); args.extend(get_args(&alias_tokens));
} }
// Execute inbuilt command if match found, otherwise execute external command with // Execute inbuilt command if match found, otherwise execute external command with
// arguments. // arguments.
match cmd.as_str() { match cmd.as_str() {
"cd" => cd(&args), "cd" => cd(&args),