Skip to content

Commit

Permalink
Merge pull request #531 from NickAllmakerOpsCompass/fix_fileattr
Browse files Browse the repository at this point in the history
Fixing preserving linux file permissions
  • Loading branch information
5saviahv authored Aug 18, 2024
2 parents b148463 + 3e2fa32 commit ca54d1a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion headers/entryHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ module.exports = function () {

// get Unix file permissions
get fileAttr() {
return uint16(_attr >> 16) & 0xfff;
return (_attr || 0) >> 16 & 0xfff;
},

get offset() {
Expand Down
10 changes: 10 additions & 0 deletions test/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,16 @@ describe("headers", () => {
expect(head.toJSON()).to.eql(headerdata);
});

it("handles fileAttr when attr above 0x80000000", () => {
const attr = 0x81E80000;

const head = new centralHeader();
head.loadFromBinary(readBuf);
head.attr = attr;

expect(head.fileAttr).to.equal(0x01E8);
});

it("read binary and create new binary from it, they have to be equal", () => {
const head = new centralHeader();
head.loadFromBinary(readBuf);
Expand Down

0 comments on commit ca54d1a

Please sign in to comment.