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.
This commit is contained in:
@@ -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} .
|
||||
|
||||
Reference in New Issue
Block a user