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.
123456789101112 |
- #!/usr/bin/env bash
-
- if [[ -z "$LIB_JITSI_MEET_REPO" ]];
- then
- echo "development";
- exit 0;
- 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}";
|