diff options
author | Valentin Bartenev <vbart@nginx.com> | 2019-02-27 17:25:28 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2019-02-27 17:25:28 +0300 |
commit | 5c9fe8c3060f8204b143abae6d81ee8363aba060 (patch) | |
tree | d081751adf7ef353ea865468168512e600fb94b1 /auto/modules | |
parent | e929d08201aae949db25ae8c1051a91e96ba3011 (diff) | |
download | unit-5c9fe8c3060f8204b143abae6d81ee8363aba060.tar.gz unit-5c9fe8c3060f8204b143abae6d81ee8363aba060.tar.bz2 |
Added trailing zero to version string.
While it looks nicer without zero 3-rd version number, this should
improve interoperability. Version string can be parsed or used for
sorting. And it is easier to handle and less confusing when there
is constant number of version parts.
Moreover, NPM also expects version format with 3 parts.
So ".0" has already been used in Node.js module version.
Diffstat (limited to 'auto/modules')
-rw-r--r-- | auto/modules/nodejs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto/modules/nodejs b/auto/modules/nodejs index 6fd00496..edaf99ac 100644 --- a/auto/modules/nodejs +++ b/auto/modules/nodejs @@ -158,7 +158,7 @@ ${NXT_NODE_VERSION_FILE}: ${NXT_VERSION_H} $echo '#define NXT_NODE_VERNUM \$(NXT_VERNUM)' > $NXT_NODE_VERSION_FILE ${NXT_NODE_TARBALL}: ${NXT_NODE}-copy - sed -e 's/"version"\s*:.*/"version": "\$(NXT_VERSION).0",/' \ + sed -e 's/"version"\s*:.*/"version": "\$(NXT_VERSION)",/' \ ${NXT_NODE_TMP}/package.json > ${NXT_NODE_TMP}/package.json.tmp mv ${NXT_NODE_TMP}/package.json.tmp ${NXT_NODE_TMP}/package.json tar -zcvf ${NXT_NODE_TARBALL} -C ${NXT_NODE_TMP} . |