Skip to content

Commit

Permalink
Merge pull request #1 from bower/master
Browse files Browse the repository at this point in the history
Pulling latest changes from original project
  • Loading branch information
ipetrovic11 committed Jun 23, 2022
2 parents 27dffcc + 1ac3acc commit 915ff16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/structures.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var parseExternalFileAttributes = function (externalAttributes, platform) {
case 3: // Unix
return {
platform: 'Unix',
type: types[(externalAttributes >> 28) & 0x0F],
type: types[(externalAttributes >> 28) & 0x0F] || 'File', // default to File
mode: (externalAttributes >> 16) & 0xFFF
};

Expand Down

0 comments on commit 915ff16

Please sign in to comment.