master
sh 13 lines 457 Bytes
Raw
1 #!/usr/bin/env bash
2 # SPDX-License-Identifier: GPL-3.0-or-later
3
4 # shellcheck source=packaging/makeself/functions.sh
5 . "$(dirname "${0}")/../functions.sh" "${@}" || exit 1
6
7 # shellcheck disable=SC2015
8 [ "${GITHUB_ACTIONS}" = "true" ] && echo "::group::Copying CA certificates from build environment" || true
9
10 run cp -a /etc/ssl "${NETDATA_INSTALL_PATH}/share/ssl"
11
12 # shellcheck disable=SC2015
13 [ "${GITHUB_ACTIONS}" = "true" ] && echo "::endgroup::" || true