2321226d82
* Update Vault version verification integration test Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Refactor to validate artifact build date Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Address review comments Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> * Fix capitalization in variable descriptions Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com> Signed-off-by: Jaymala Sinha <jaymala@hashicorp.com>
11 lines
246 B
Bash
Executable file
11 lines
246 B
Bash
Executable file
#!/bin/env bash
|
|
set -eu -o pipefail
|
|
|
|
# Set up the environment for building Vault.
|
|
root_dir="$(git rev-parse --show-toplevel)"
|
|
|
|
pushd "$root_dir" > /dev/null
|
|
|
|
IFS="-" read -r VAULT_BUILD_DATE _other <<< "$(make build-date)"
|
|
echo $VAULT_BUILD_DATE
|