diff options
| -rwxr-xr-x | texall | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -355,7 +355,7 @@ def processtexfiles(args): for bbl in bbls: bblpath = os.path.normpath(os.path.join(dirname, bbl)) bbltime = os.path.getmtime(bblpath) - if options.force or bbltime < bibtime: + if (options.force and not options.singlerun) or bbltime < bibtime: reason = "" if options.verbosity: if bbltime < bibtime: |
