Skip to content

Commit 9a31844

Browse files
committed
Fix execute bit
1 parent fc2c547 commit 9a31844

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@parcel/css",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"license": "MPL-2.0",
55
"description": "A CSS parser, transformer, and minifier written in Rust",
66
"main": "node/index.js",

scripts/build-npm.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,6 @@ function buildCLI(triple, cpu, os, t) {
118118
} catch (err) {}
119119
fs.writeFileSync(`${dir}/npm/cli-${t}/package.json`, JSON.stringify(pkg2, false, 2) + '\n');
120120
fs.copyFileSync(`${dir}/artifacts/bindings-${triple}/${binary}`, `${dir}/npm/cli-${t}/${binary}`);
121+
fs.chmodSync(`${dir}/npm/cli-${t}/${binary}`, 0o755); // Ensure execute bit is set.
121122
fs.writeFileSync(`${dir}/npm/cli-${t}/README.md`, `This is the ${triple} build of @parcel/css-cli. See https://github.com/parcel-bundler/parcel-css for details.`);
122123
}

0 commit comments

Comments
 (0)