Skip to content

Commit

Permalink
fix latest build
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <[email protected]>
  • Loading branch information
sverdlov93 committed Oct 5, 2023
1 parent 65f3c1a commit 0c74c8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/npm/v2-jf/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function writeToFile(response) {
.on("end", function () {
file.end();
if (!process.platform.startsWith("win")) {
chmodSync(filePath, 755);
chmodSync(filePath, '755');
}
})
.on("error", function (err) {
Expand Down
2 changes: 1 addition & 1 deletion build/npm/v2/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function writeToFile(response) {
.on("end", function () {
file.end();
if (!process.platform.startsWith("win")) {
chmodSync(filePath, 0o555);
chmodSync(filePath, '755');
}
})
.on("error", function (err) {
Expand Down

0 comments on commit 0c74c8c

Please sign in to comment.