Skip to content

Commit 478b8c2

Browse files
committed
linter.
1 parent 74e3275 commit 478b8c2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bin/firebase-functions.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ async function runStdioDiscovery() {
6363
process.stderr.write(`${MANIFEST_START_TAG}\n${base64}\n${MANIFEST_END_TAG}\n`);
6464
process.exitCode = 0;
6565
} catch (e) {
66-
const message = `Failed to generate manifest from function source: ${e instanceof Error ? e.message : String(e)}`;
66+
const message = `Failed to generate manifest from function source: ${
67+
e instanceof Error ? e.message : String(e)
68+
}`;
6769
process.stderr.write(`${MANIFEST_ERROR_START_TAG}\n${message}\n${MANIFEST_ERROR_END_TAG}\n`);
6870
}
6971
}

0 commit comments

Comments
 (0)