Skip to content

Commit a598fc2

Browse files
authored
use ISO date (#1704)
1 parent 5985bd8 commit a598fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ function formatAge(age: number): string {
850850
const hours = Math.round(age / 1000 / 60 / 60);
851851
return `${hours} hour${hours === 1 ? "" : "s"} ago`;
852852
}
853-
return `at ${new Date(Date.now() - age).toLocaleString("en")}`;
853+
return `at ${new Date(Date.now() - age).toLocaleString("sv")}`;
854854
}
855855

856856
async function readCacheFile(sourceRoot: string, path: string): Promise<string> {

0 commit comments

Comments
 (0)