ussg

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 26c60fff13113a1126bad519b9bbe3ccc7a30462
parent 3a8870724a4c742bd1e6f62913e920b6a72da0c8
Author: Lightning <lightning@chatspeed.net>
Date:   Wed, 31 Dec 2025 13:40:29 +0000

out of date

Diffstat:
Mussg-page | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ussg-page b/ussg-page @@ -344,10 +344,10 @@ if {[llength $arg] == 2} { if {[set outputmtime [file mtime $::outputfile]] >= [set inputmtime [file mtime $::inputfile]]} { puts stderr [format "Info: output file \'%s\' is newer (%s) than input file \'%s\' (%s)" $::outputfile $outputmtime $::inputfile $inputmtime] foreach header $::headersfiles { - if {[set outputmtime [file mtime $::outputfile]] >= [set inputmtime [file mtime header]]} { - puts stderr [format "Info: output file \'%s\' is newer (%s) than header file \'%s\' (%s)" $::outputfile $outputmtime $::inputfile $inputmtime] + if {[set outputmtime [file mtime $::outputfile]] >= [set inputmtime [file mtime $header]]} { + puts stderr [format "Info: output file \'%s\' is newer (%s) than header file \'%s\' (%s)" $::outputfile $outputmtime $header $inputmtime] } else { - puts stderr [format "Info: output file \'%s\' was modified %s, header file \'%s\' was modified (%s)" $::outputfile $outputmtime $::inputfile $inputmtime] + puts stderr [format "Info: output file \'%s\' was modified %s, header file \'%s\' was modified (%s)" $::outputfile $outputmtime $header $inputmtime] set ::canexit 0 } }