diff --git a/src/deploy/functions/validate.ts b/src/deploy/functions/validate.ts index fe12d75ff8b..df544b5c02a 100644 --- a/src/deploy/functions/validate.ts +++ b/src/deploy/functions/validate.ts @@ -319,7 +319,7 @@ export function functionIdsAreValid(functions: { id: string; platform: string }[ if (invalidIds.length !== 0) { const msg = `${invalidIds.map((f) => f.id).join(", ")} function name(s) can only contain letters, ` + - `numbers, hyphens, and not exceed 62 characters in length`; + `numbers, underscores, hyphens, and not exceed 63 characters in length`; throw new FirebaseError(msg); } }