mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:17:01 +00:00
fix(commands): 修复命令帮助信息中的字符串格式错误
将多行字符串的引号格式从错误的分行写法修正为使用双括号语法,确保命令帮助信息能正确显示
This commit is contained in:
@@ -8,8 +8,8 @@ local function printHelp()
|
|||||||
print("Options:")
|
print("Options:")
|
||||||
print(" --help, -h Show this help message")
|
print(" --help, -h Show this help message")
|
||||||
print(" --verbose, -v Show command file paths")
|
print(" --verbose, -v Show command file paths")
|
||||||
print("
|
print([[
|
||||||
Lists all available commands in LeonOS.")
|
Lists all available commands in LeonOS.]])
|
||||||
end
|
end
|
||||||
|
|
||||||
-- 主函数
|
-- 主函数
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
-- LeonOS installer
|
-- LeonOS installer
|
||||||
local INSTALLER_VERSION = "0.3.7 Beta 5"
|
local INSTALLER_VERSION = "0.3.7 Beta 6"
|
||||||
local DEFAULT_ROM_DIR = "/leonos"
|
local DEFAULT_ROM_DIR = "/leonos"
|
||||||
|
|
||||||
print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")
|
print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")
|
||||||
|
|||||||
Reference in New Issue
Block a user