mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 06:12:25 -08:00
Only skip copying test files if the destination is at least as fresh.
This commit is contained in:
parent
c390b93b21
commit
990e0d1c15
1 changed files with 3 additions and 1 deletions
|
|
@ -170,7 +170,9 @@
|
|||
(loop for f in (directory (merge-pathnames *wild-inferiors* orig))
|
||||
for f2 = (enough-namestring f orig)
|
||||
for f3 = (merge-pathnames f2 dest)
|
||||
unless (probe-file f3)
|
||||
unless (and (probe-file f3)
|
||||
(>= (file-write-date f3)
|
||||
(file-write-date f2)))
|
||||
do (ensure-directories-exist f3)
|
||||
do (ext:copy-file f f3)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue