mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 12:26:34 +02:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
set -eux -o pipefail
|
|
|
|
project_root=$(git rev-parse --show-toplevel)
|
|
pushd "$project_root" > /dev/null
|
|
|
|
echo "running test-ember-enos"
|
|
make test-ember-enos
|
|
popd > /dev/null
|