mirror of https://github.com/pyodide/pyodide.git
Merge pull request #168 from rth/fix-version-tags
Fix versioning for tags starting with a "v"
This commit is contained in:
commit
2e23079aed
2
Makefile
2
Makefile
|
@ -162,7 +162,7 @@ root/.built: \
|
||||||
cp src/pyodide.py root/lib/python$(PYMINOR)/site-packages
|
cp src/pyodide.py root/lib/python$(PYMINOR)/site-packages
|
||||||
if command -v git > /dev/null 2>&1 \
|
if command -v git > /dev/null 2>&1 \
|
||||||
&& git describe --tags > /dev/null 2>&1; then \
|
&& 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; \
|
root/lib/python$(PYMINOR)/site-packages/pyodide.py; \
|
||||||
fi
|
fi
|
||||||
( \
|
( \
|
||||||
|
|
Loading…
Reference in New Issue