Skip to content
Open
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
5 changes: 3 additions & 2 deletions ls.nim
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,11 @@ proc getNimbleDumpInfo*(
nimbleFile = result.nimblePath.get
if nimbleFile != "":
ls.nimDumpCache[nimbleFile] = result
except OSError, IOError:
except OSError, IOError, AsyncProcessError:
debug "Failed to get nimble dump info", nimbleFile = nimbleFile
finally:
await shutdownChildProcess(process)
if process != nil:
await shutdownChildProcess(process)

proc parseWorkspaceConfiguration*(conf: JsonNode): NlsConfig =
try:
Expand Down