Fix versioning with tags starting with v

This commit is contained in:
Roman Yurchak 2018-09-17 14:45:08 +02:00
parent 386caadf05
commit 98f843df0e
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ root/.built: \
cp src/pyodide.py root/lib/python$(PYMINOR)/site-packages
if command -v git > /dev/null 2>&1 \
&& git describe --tags > /dev/null 2>&1; then \
sed -i "s/__version__ =.*/__version__ = '$(shell git describe --tags)'/g" \
sed -i "s/__version__ =.*/__version__ = '$(shell git describe --tags | sed -r 's/^v//')'/g" \
root/lib/python$(PYMINOR)/site-packages/pyodide.py; \
fi
( \