pdf.js version not set correctly for builds of downloaded sources (non-git repositories)

Created on 22 Jun 2018  ·  4Comments  ·  Source: mozilla/pdf.js

I finally (I hope) figured out why the version number of pdf.js Chrome extensions built by me didn't have the correct version.
I downloaded the 2.0.550 archive from the releases pages, set up everything as should (npm, gulp, etc) and then tried to build a Chrome extension.
The build is successfull, but the resulting extension has 2.0.0 version.
The problem is that gulpfile.js assumes it's in a git repository to determine the build number (see line 426 and on), but it's not in this case (git gives fatal: Not a git repository (or any of the parent directories): .git)
This wouldn't happen if the directory were obtained using git clone ... in which case it would be a proper git repository.

1-other 5-good-beginner-bug

All 4 comments

Indeed, that may well be the case. I don't really think there is anything we can do about that though because the version number is determined by the commits. Only a different versioning scheme could help, but for now that's not really considered.

You could at least put a comment / warning in the README.

Perhaps it would make more sense to just error out, rather than generating a fake buildnumber?
https://github.com/mozilla/pdf.js/blob/34594a5b02394a531c1512ff10b44148225abe67/gulpfile.js#L431-L434

I don't really see this as a problem, but if someone wants to contribute a patch for that I'm fine with it. Marking as a good beginner bug.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

StevenHarlow picture StevenHarlow  ·  29Comments

timvandermeij picture timvandermeij  ·  28Comments

kaymes picture kaymes  ·  62Comments

jonasyuandotcom picture jonasyuandotcom  ·  29Comments

collinanderson picture collinanderson  ·  29Comments