Skip to content

Commit

Permalink
Fix execute bit
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Feb 14, 2022
1 parent fc2c547 commit 9a31844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcel/css",
"version": "1.3.0",
"version": "1.3.1",
"license": "MPL-2.0",
"description": "A CSS parser, transformer, and minifier written in Rust",
"main": "node/index.js",
Expand Down
1 change: 1 addition & 0 deletions scripts/build-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,6 @@ function buildCLI(triple, cpu, os, t) {
} catch (err) {}
fs.writeFileSync(`${dir}/npm/cli-${t}/package.json`, JSON.stringify(pkg2, false, 2) + '\n');
fs.copyFileSync(`${dir}/artifacts/bindings-${triple}/${binary}`, `${dir}/npm/cli-${t}/${binary}`);
fs.chmodSync(`${dir}/npm/cli-${t}/${binary}`, 0o755); // Ensure execute bit is set.
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.`);
}

0 comments on commit 9a31844

Please sign in to comment.