Summary print-out differs between Mac OS and Linux for the very same code

I am trying to build the very same code on two different platforms (Mac OS and Linux), and I get a slightly different summary at the end which really bothers me. Otherwise, no problem has been detected with the result.

The difference is in the number of “Static files”, e.g.,

on Mac OS, the summary looks like this,

-------------------±-----
Pages | 140
Paginator pages | 0
Non-page files | 1
Static files | 24
Processed images | 0
Aliases | 0
Sitemaps | 1
Cleaned | 0

while on Linux, it is this,

-------------------±-----
Pages | 140
Paginator pages | 0
Non-page files | 1
Static files | 21
Processed images | 0
Aliases | 0
Sitemaps | 1
Cleaned | 0

Mac OS says it “dealt” with 24 static files, whereas Linux saw 21 only.

Is there a way to get more debugging details about on the difference? Should I be concerned, in general?

Mac OS:
hugo v0.115.3-5c2e014a5150553a9fa4f9c1eb7dc4db89c0f1ab+extended darwin/amd64 BuildDate=2023-07-13T16:11:34Z VendorInfo=gohugoio

Linux:
hugo v0.115.3-5c2e014a5150553a9fa4f9c1eb7dc4db89c0f1ab+extended linux/arm64 BuildDate=2023-07-13T16:11:34Z VendorInfo=gohugoio

Oh, okay… I found the source of the problem:

I had extra empty directories in the static folder. Apparently Hugo counted them too. After I erased them, the numbers match now.

Thanks!

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.