Skip to content

Commit

Permalink
Fix typo in beforePrepare.js logs (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyaddin authored and jcesarmobile committed Dec 11, 2018
1 parent a3be7c5 commit 8cdee2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hooks/beforePrepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function ionicVersionOutput(rootDir, resolve, reject, err, version, stderr) {
reject();
}

console.log('Generating intial manifest for Ionic Deploy...');
console.log('Generating initial manifest for Ionic Deploy...');
exec(
'ionic deploy manifest --no-interactive',
{ cwd: rootDir },
Expand All @@ -41,7 +41,7 @@ function ionicVersionOutput(rootDir, resolve, reject, err, version, stderr) {

function ionicManifestOutput(resolve, reject, err, version, stderr) {
if(err) {
console.error('There was an error generating the intial manifest of files for the deploy plugin.');
console.error('There was an error generating the initial manifest of files for the deploy plugin.');
reject()
}
resolve();
Expand Down

0 comments on commit 8cdee2b

Please sign in to comment.