Improve pnpm path WIP

This commit is contained in:
stubbsta 2025-06-11 15:25:26 +02:00
parent 24ec7d40c0
commit 50a929966d

View File

@ -116,7 +116,7 @@ proc getPnpmPath*(): string =
if exitCode == 0 and output.strip() != "":
return "pnpm" # Let the shell find it in PATH
except OSError:
except OSError, IOError:
# If execCmdEx fails, continue to next path
discard
else: