From 2afe6bb1e83c1a2af8f9c89a10151746a3d48da4 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Wed, 27 Oct 2021 02:10:11 +0300 Subject: [PATCH] update @ Wed 27 Oct 02:10:11 EEST 2021 --- content/js/shell/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/js/shell/index.js b/content/js/shell/index.js index 67ad914..bbd8df4 100644 --- a/content/js/shell/index.js +++ b/content/js/shell/index.js @@ -12,7 +12,7 @@ function main() { let code = (e.keyCode ? e.keyCode : e.which); if (code == 13) { let command_list = cmd_prompt.value.split(' '); - let command = command_list[0]; + let command = command_list[0].toLocaleLowerCase(); let argv = command_list.slice(1);