mirror of
https://github.com/kakwa/ldapcherry
synced 2024-10-31 22:58:52 +01:00
9 lines
186 B
Bash
Executable File
9 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd `dirname $0`/../
|
|
|
|
version=`sed -e "s/version\ * = \ *'\(.*\)'.*/\1/;tx;d;:x" ./ldapcherry/version.py`
|
|
|
|
git tag "$version" -m "version $version"
|
|
git push origin "$version"
|