Skip to content

Commit 9a91c8b

Browse files
authored
fix double quote to back quote.
1 parent 34dd794 commit 9a91c8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/deploy/functions/runtimes/node/parseRuntimeAndValidateSDK.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ const supportedNodeVersions: string[] = Object.keys(supported.RUNTIMES)
1313
.map((s) => s.substring("nodejs".length));
1414

1515
export const RUNTIME_NOT_SET =
16-
"`runtime` field is required but was not found in firebase.json or package.json.\n" +
17-
"To fix this, add the following lines to the `functions` section of your firebase.json:\n" +
18-
`"runtime": "${supported.latest("nodejs")}" or set the "engines" field in package.json\n`;
16+
`\`runtime\` field is required but was not found in firebase.json or package.json.
17+
To fix this, add the following lines to the \`functions\` section of your firebase.json:
18+
"runtime": "${supported.latest("nodejs")}" or set the "engines" field in package.json`;
1919

2020
function getRuntimeChoiceFromPackageJson(sourceDir: string): supported.Runtime {
2121
const packageJsonPath = path.join(sourceDir, "package.json");

0 commit comments

Comments
 (0)