diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-03-20 11:11:19 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-03-20 11:11:19 -0400 |
commit | 4d19741c9df760e2c62a848e5ad91143e0c17bab (patch) | |
tree | 826730f4bf66421ac141c3b5a9277bcd112f77dd /src/lpm.lua | |
parent | 829c8ec06f2c083ebedc1001fa71ff4b6becc9f7 (diff) | |
download | lite-xl-plugin-manager-4d19741c9df760e2c62a848e5ad91143e0c17bab.tar.gz lite-xl-plugin-manager-4d19741c9df760e2c62a848e5ad91143e0c17bab.zip |
Added in ability to execute string literals for ease of automation.
Diffstat (limited to 'src/lpm.lua')
-rw-r--r-- | src/lpm.lua | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index 23747a7..0921ba7 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -2329,7 +2329,7 @@ There exist also other debug commands that are potentially useful, but are not commonly used publically. lpm test <test file> Runs the specified test suite. - lpm exec <file> Runs the specified lua file with the internal + lpm exec <file|string> Runs the specified lua file/string with the internal interpreter. lpm download <url> [target] Downloads the specified URL to stdout, or to the specified target file. @@ -2530,7 +2530,17 @@ not commonly used publically. local arg = common.slice(ARGS, 4) arg[0] = ARGS[1] rawset(_G, "arg", arg) - loadfile(ARGS[3])(table.unpack(arg)) + local chunk, err + if system.stat(ARGS[3]) then + chunk, err = loadfile(ARGS[3]) + else + chunk, err = load(ARGS[3]) + end + if chunk then + chunk(table.unpack(arg)) + else + error(err) + end os.exit(0) end if ARGS[2] == "download" then |