Skip to content

Commit

Permalink
Merge pull request AdobeXD#22 from nikoladev/patch-1
Browse files Browse the repository at this point in the history
fix typo in error message
  • Loading branch information
kerrishotts authored Sep 25, 2019
2 parents 571cd5a + dca1858 commit 90dd2fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function package(opts, args) {
const errors = validate(metadata, {root: sourcePath});
if (errors.length > 0) {
return Object.assign({}, result, {
"error": "Can't package a plugin that has validation errors in the maniest.json:\n" + errors.join("\n")
"error": "Can't package a plugin that has validation errors in the manifest.json:\n" + errors.join("\n")
});
}

Expand Down Expand Up @@ -103,4 +103,4 @@ function package(opts, args) {
return results;
}

module.exports = package;
module.exports = package;

0 comments on commit 90dd2fa

Please sign in to comment.