Skip to content

Commit 8c5af8e

Browse files
committed
fix: Use string value for octal chmod of placeholder binary
1 parent d495a2b commit 8c5af8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/pipelines-release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ exit 1;
100100
if (bins[name]) {
101101
const binPath = path.join(__dirname, "..", "_release", "bin", name);
102102
fs.writeFileSync(binPath, placeholderFile);
103-
fs.chmodSync(binPath, 511);
103+
fs.chmodSync(binPath, '777');
104104
} else {
105105
console.log("bins[name] name=" + name + " was empty. Weird.");
106106
console.log(bins);

0 commit comments

Comments
 (0)