Use an env var for the package version

Because supplying arguments to npm scripts is a bad idea: it just
appends the arguments blindly to whatever the command was. Thanks,
npm.
This commit is contained in:
David Baker 2016-11-04 09:40:24 +00:00
parent db07ef7899
commit f5d95f7314

View file

@ -2,8 +2,8 @@
set -e
if [ $# -eq 1 ]; then
version=$1
if [ -n "$DIST_VERSION" ]; then
version=$DIST_VERSION
else
version=`git describe --dirty --tags || echo unknown`
fi