Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
<!-- Add all new changes here. They will be moved under a version at release -->
* `FIX` incorrect argument skip pattern for `--check_out_path=`, which incorrectly skips the next argument
* `FIX` remove extra `./` path prefix in the check report when using `--check=.`

## 3.13.6
`2025-2-6`
Expand Down
2 changes: 1 addition & 1 deletion script/cli/check_worker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function export.runCLI()
return
end

local rootPath = fs.absolute(fs.path(CHECK_WORKER)):string()
local rootPath = fs.canonical(fs.path(CHECK_WORKER)):string()
local rootUri = furi.encode(rootPath)
if not rootUri then
print(lang.script('CLI_CHECK_ERROR_URI', rootPath))
Expand Down