Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/extensibility/node/package-validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ function extractAndValidateFiles(zipPath, extractDir, options, callback) {
unzipper.on("error", function (err) {
// General error to report for problems reading the file
callback(null, {
errors: [[Errors.INVALID_ZIP_FILE, zipPath]]
errors: [[Errors.INVALID_ZIP_FILE, zipPath, err]]
});
return;
});
Expand Down
2 changes: 1 addition & 1 deletion src/extensibility/node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "brackets-extensibility",
"description": "Used in the management of Brackets extensions",
"version": "0.45.0",
"version": "1.2.0",
"dependencies": {
"decompress-zip": "0.0.2",
"semver": "2.x",
Expand Down