You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 1234567891011 |
- #!/usr/bin/env bash
-
- if [[ -z "$LIB_JITSI_MEET_REPO" ]];
- then
- LIB_JITSI_MEET_REPO="."
- fi
-
- COMMIT_HASH=$(cd $LIB_JITSI_MEET_REPO && git rev-parse --short HEAD)
- COMMIT_TAG=$(cd $LIB_JITSI_MEET_REPO && git describe --abbrev=0 --tags)
-
- echo "${COMMIT_TAG}#${COMMIT_HASH}";
|