mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
19 lines
296 B
Bash
Executable File
19 lines
296 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -x
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
# shellcheck disable=SC2128
|
|
PROJECT_ROOT=$(
|
|
cd "$(dirname "${BASH_SOURCE}")"/..
|
|
pwd
|
|
)
|
|
PATH="${PROJECT_ROOT}/dist:${PATH}"
|
|
|
|
# output tool versions
|
|
mockery version
|
|
|
|
mockery --config "${PROJECT_ROOT}"/.mockery.yaml
|