Skip to content

Commit db43be1

Browse files
committed
Fix missing semicolon
1 parent 07d80ed commit db43be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/testRunner/externalCompileRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function stripRushStageNumbers(result: string): string {
188188
}
189189

190190
function stripWebpackHash(result: string): string {
191-
return result.replace(/Hash: \w+/g, "Hash: [redacted]")
191+
return result.replace(/Hash: \w+/g, "Hash: [redacted]");
192192
}
193193

194194
function sanitizeSizes(result: string): string {

0 commit comments

Comments
 (0)