diff --git a/lib/ActionInputValidator/ValidatorFactory.js b/lib/ActionInputValidator/ValidatorFactory.js index 4e6bb8177..eb1f32429 100644 --- a/lib/ActionInputValidator/ValidatorFactory.js +++ b/lib/ActionInputValidator/ValidatorFactory.js @@ -55,7 +55,7 @@ class ValidatorFactory { } } else { - throw new Error("Valid credentails are not available. Add Azure Login action before this action or provide publish-profile input."); + throw new Error("Valid credentials are not available. Add Azure Login action before this action or provide publish-profile input."); } }); } diff --git a/src/ActionInputValidator/ValidatorFactory.ts b/src/ActionInputValidator/ValidatorFactory.ts index 36535a47f..ff4a3f3bc 100644 --- a/src/ActionInputValidator/ValidatorFactory.ts +++ b/src/ActionInputValidator/ValidatorFactory.ts @@ -43,7 +43,7 @@ export class ValidatorFactory { } } else { - throw new Error("Valid credentails are not available. Add Azure Login action before this action or provide publish-profile input."); + throw new Error("Valid credentials are not available. Add Azure Login action before this action or provide publish-profile input."); } } @@ -60,4 +60,4 @@ export class ValidatorFactory { const appOS: string = await publishProfile.getAppOS(); actionParams.isLinux = appOS.includes(RuntimeConstants.Unix) || appOS.includes(RuntimeConstants.Unix.toLowerCase()); } -} \ No newline at end of file +}