Skip to content

Commit ee8ef89

Browse files
committed
fix src copying messing up timestamps
this was confusing ./configure scripts into thinking they needed to be regenerated
1 parent a144bc6 commit ee8ef89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libexec/stage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ if (blddir.string.includes(" ")) {
4444
}
4545

4646
if (!blddir.isDirectory() || blddir.exists()?.isEmpty()) {
47-
await copy(srcdir.string, blddir.string, { overwrite: true })
47+
await copy(srcdir.string, blddir.string, { overwrite: true, preserveTimestamps: true })
4848
}
4949

5050
//FIXME this goes to GitHub, and we already did this once

0 commit comments

Comments
 (0)