#!/bin/sh if [ `uname` = "Darwin" ]; then export PATH="${TASKCLUSTER_TASK_DIR}/homebrew/opt/coreutils/libexec/gnubin:${PATH}" fi; GIT_DIR="$(realpath "$(dirname "$(realpath "$0")")/../.git/")" if [ ! -d "${GIT_DIR}" ]; then return 1 fi; GIT_VERSION=$(git --git-dir="${GIT_DIR}" describe --long --tags) if [ $? -ne 0 ]; then GIT_VERSION=unknown; fi cat < const char* ds_git_version() { return "${GIT_VERSION}"; } EOF