mirror of
https://github.com/bitnami/containers.git
synced 2026-03-27 07:17:59 +08:00
12 lines
253 B
Bash
Executable File
12 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
mapfile -t files < <( find /bitnami "$BITNAMI_ROOT_DIR" -type f -name '*.spdx' )
|
|
|
|
[[ ${#files[@]} -gt 0 ]]
|