Skip to content

Commit

Permalink
fix: lemMinX chmod value
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Mar 3, 2024
1 parent 2d2d3eb commit 494b2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-electron/lsp.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default {
createWriteStream(platformOpts.execPath)
)
if (process.platform !== 'win32') {
await fs.chmod(platformOpts.execPath, '+x')
await fs.chmod(platformOpts.execPath, 0o775)
}
await fs.access(platformOpts.execPath, fs.constants.X_OK)
} catch (err) {
Expand Down

0 comments on commit 494b2f3

Please sign in to comment.