Skip to content

Commit

Permalink
fix: Use string value for octal chmod of placeholder binary
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtrKovalenko committed Dec 1, 2022
1 parent d495a2b commit 8c5af8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/pipelines-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ exit 1;
if (bins[name]) {
const binPath = path.join(__dirname, "..", "_release", "bin", name);
fs.writeFileSync(binPath, placeholderFile);
fs.chmodSync(binPath, 511);
fs.chmodSync(binPath, '777');
} else {
console.log("bins[name] name=" + name + " was empty. Weird.");
console.log(bins);
Expand Down

0 comments on commit 8c5af8e

Please sign in to comment.