diff --git a/content/js/shell/func.js b/content/js/shell/func.js index be739cf..5e1a553 100644 --- a/content/js/shell/func.js +++ b/content/js/shell/func.js @@ -120,7 +120,7 @@ function su(cmd) { return `Switched to the ${root ? 'root' : localStorage.getItem('username')} user.` } else { root = true; - let ret = ''; + let ret = 'Command not found'; try { ret = commands[cmd[0]]['func'](cmd.slice(1));