mirror of
https://github.com/bitnami/containers.git
synced 2026-03-27 15:27:48 +08:00
15 lines
362 B
YAML
15 lines
362 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
########################
|
|
# Checks binaries are added to the $PATH
|
|
# Needed vars:
|
|
# - .Vars.binaries (Array)
|
|
########################
|
|
command:
|
|
{{ range $binary := .Vars.binaries }}
|
|
check-{{ $binary }}-binary:
|
|
exec: which {{ $binary }}
|
|
exit-status: 0
|
|
{{ end }}
|