我正在Windows 10上运行wix/vscode-glean
VSCode扩展,并在尝试提取react组件时遇到此问题。
[2018-11-03 19:51:26.898] [renderer1] [error] [{"errno":-4094,"code":"UNKNOWN","syscall":"stat","path":"\\\\d:\\multivariate-hypergeo\\src\\PopulationInput.js"}]
[2018-11-03 19:51:26.913] [renderer1] [error] [{"fileOperationResult":1,"options":{"acceptTextOnly":true}}]
[2018-11-03 19:51:26.930] [renderer1] [error] [{"fileOperationResult":1,"options":{"acceptTextOnly":true}}]
我唯一的猜测是,此代码只考虑了linux,并且在Windows上系统调用'stat'
并不意味着什么(或同一件事)?
我提出了an issue,但实际上我想了解潜在的问题。
错误消息是什么
{"errno":-4094,"code":"UNKNOWN","syscall":"stat","path":"\\\\d:\\multivariate-hypergeo\\src\\PopulationInput.js"}
是平均值?
答案 0 :(得分:0)
该扩展程序已通过these two commits修补为可在Windows 10上运行。
(vscode.)Uri.Parse
变为Uri.file
,例如:
edit.replace(vscode.Uri.parse(`file://${path}`), new vscode.Range(start, end), text);
成为
edit.replace(Uri.file(path), new vscode.Range(start, end), text);
因此,现在应该适用于4.2.2以上的版本