Skip to content

Commit

Permalink
Merge pull request #116 from YodaDaCoda/fix/executable-bit
Browse files Browse the repository at this point in the history
fix: retain executable bit on pmd binary in linux
  • Loading branch information
amtrack authored Dec 3, 2024
2 parents a1b9996 + 15ef996 commit 6c865e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion download-pmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function extractPmd(buffer) {
const Zip = require("adm-zip");

const pmdZip = new Zip(buffer);
pmdZip.extractAllTo("dist", true);
pmdZip.extractAllTo("dist", true, true);
}

async function movePmd() {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"node-java-connector": "1.1.1"
},
"devDependencies": {
"adm-zip": "^0.5.10"
"adm-zip": "^0.5.16"
},
"files": [
"/dist",
Expand Down

0 comments on commit 6c865e3

Please sign in to comment.