We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61b4b37 commit fcff6d8Copy full SHA for fcff6d8
src/lib/libwasmfs_node.js
@@ -31,7 +31,7 @@ addToLibrary({
31
if (wasmfsNodeIsWindows) {
32
// Node.js on Windows never represents permission bit 'x', so
33
// propagate read bits to execute bits
34
- stat.mode |= (stat.mode & {{{ cDefs.S_IRUSR | cDefs.S_IRGRP | cDefs.S_IROTH }}}) >> 2;
+ stat.mode |= (stat.mode & {{{ cDefs.S_IRUGO }}}) >> 2;
35
}
36
return stat;
37
},
0 commit comments