fix(commands): 修复命令帮助信息中的字符串格式错误

将多行字符串的引号格式从错误的分行写法修正为使用双括号语法,确保命令帮助信息能正确显示
This commit is contained in:
2025-09-02 14:27:46 +08:00
parent b6ab1374d7
commit 3dfab20520
2 changed files with 3 additions and 3 deletions

View File

@@ -8,8 +8,8 @@ local function printHelp()
print("Options:")
print(" --help, -h Show this help message")
print(" --verbose, -v Show command file paths")
print("
Lists all available commands in LeonOS.")
print([[
Lists all available commands in LeonOS.]])
end
-- 主函数