mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
The external builders will build and launch binary chaincode instead of docker containers. Signed-off-by: Chris Elder <celder628@gmail.com>
11 lines
No EOL
253 B
Bash
Executable file
11 lines
No EOL
253 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
set -euo pipefail
|
|
exec 1>&2
|
|
BUILD_OUTPUT_DIR="$1"
|
|
RELEASE_OUTPUT_DIR="$2"
|
|
if [ -d "${BUILD_OUTPUT_DIR}/META-INF" ] ; then
|
|
cp -a "${BUILD_OUTPUT_DIR}/META-INF/"* "${RELEASE_OUTPUT_DIR}/"
|
|
fi |