diff options
-rwxr-xr-x | version.sh | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,11 @@ #!/bin/bash -echo -n "$(git describe --tags --dirty="+" --match="v*" | sed -e 's@-\([^-]*\)-\([^-]*\)$@+\1.\2@;s@^v@@')" + +if [[ $# -eq 0 ]]; then + flags=(--dirty="+") +else + flags=("$@") +fi + +echo -n "$(git describe --tags --match="v*" "${flags[@]}" | sed -e 's@-\([^-]*\)-\([^-]*\)$@+\1.\2@;s@^v@@')" grep '#define ForRelease 0' MobileCydia.mm &>/dev/null && echo -n '~srk' echo |