We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed12d72 + 55a7c82 commit df04db2Copy full SHA for df04db2
changelog.md
@@ -4,6 +4,7 @@
4
<!-- Add all new changes here. They will be moved under a version at release -->
5
* `FIX` incorrect argument skip pattern for `--check_out_path=`, which incorrectly skips the next argument
6
* `FIX` reimplement section `luals.config` in file doc.json
7
+* `FIX` remove extra `./` path prefix in the check report when using `--check=.`
8
9
## 3.13.6
10
`2025-2-6`
script/cli/check_worker.lua
@@ -187,7 +187,7 @@ function export.runCLI()
187
return
188
end
189
190
- local rootPath = fs.absolute(fs.path(CHECK_WORKER)):string()
+ local rootPath = fs.canonical(fs.path(CHECK_WORKER)):string()
191
local rootUri = furi.encode(rootPath)
192
if not rootUri then
193
print(lang.script('CLI_CHECK_ERROR_URI', rootPath))
0 commit comments