add comment about permissions

This commit is contained in:
Evan Simkowitz 2024-09-05 16:48:08 -07:00
parent a2259cb7eb
commit d58d09e013
No known key found for this signature in database

View File

@ -99,7 +99,7 @@ const config = {
withFileTypes: true,
})
.filter((f) => f.isFile() && f.name.startsWith("wavesrv"))
.forEach((f) => fs.chmodSync(path.resolve(f.parentPath ?? f.path, f.name), 0o755));
.forEach((f) => fs.chmodSync(path.resolve(f.parentPath ?? f.path, f.name), 0o755)); // 0o755 corresponds to -rwxr-xr-x
}
},
};