diff --git a/src/schematics/deploy/builder.ts b/src/schematics/deploy/builder.ts index 42ffc7b59..3c8b51e74 100644 --- a/src/schematics/deploy/builder.ts +++ b/src/schematics/deploy/builder.ts @@ -19,7 +19,7 @@ export default createBuilder( const firebaseProject = options.firebaseProject || defaultFirebaseProject; if (!firebaseProject) { - throw new Error('Cannot detirmine the Firebase Project from your angular.json or .firebaserc'); + throw new Error('Cannot determine the Firebase Project from your angular.json or .firebaserc'); } if (firebaseProject !== defaultFirebaseProject) { throw new Error('The Firebase Project specified by your angular.json or .firebaserc is in conflict'); @@ -27,7 +27,7 @@ export default createBuilder( const firebaseHostingSite = options.firebaseHostingSite || defulatFirebaseHostingSite; if (!firebaseHostingSite) { - throw new Error(`Cannot detirmine the Firebase Hosting Site from your angular.json or .firebaserc`); + throw new Error(`Cannot determine the Firebase Hosting Site from your angular.json or .firebaserc`); } if (firebaseHostingSite !== defulatFirebaseHostingSite) { throw new Error('The Firebase Hosting Site specified by your angular.json or .firebaserc is in conflict');