* Aanpassingen dd-oper-api ddOperApi * Aanpassingen dd-api-oper ddOperApi * __version__ toegevoegd inclusief githook
7 lines
206 B
Bash
Executable File
7 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
VERSION=$(grep version setup.py | sed -e 's/.*="//' -e 's/",//')
|
|
sed -i "s/^__version__ = .*/__version__ = '${VERSION}'/" dd-oper-api/__init__.py
|
|
git add lmwsip/__init__.py
|
|
|
|
python setup.py test
|