...

Text file src/edge-infra.dev/hack/workspace_status.sh

Documentation: edge-infra.dev/hack

     1#!/usr/bin/env bash
     2
     3# This script sets the workspace variables for calls to Bazel:
     4# https://bazel.build/docs/user-manual#workspace-status
     5
     6echo "STABLE_APP_RELEASE_CANDIDATE ${RELEASE_CANDIDATE:-"true"}"
     7echo "STABLE_APP_GIT_TIMESTAMP $(git log -1 --format=%ct)"
     8echo "STABLE_APP_GIT_COMMIT $(git rev-parse HEAD)"
     9echo "STABLE_APP_SEMVER $(cat .version)"

View as plain text