From 83596078d0c3d2695dc3bb7bcd726719164adc2c Mon Sep 17 00:00:00 2001 From: David Enyeart Date: Mon, 8 Aug 2022 17:42:47 -0400 Subject: [PATCH] Fix binary package creation create_binary_package.sh was broken due to builders/ccaas. The `make "release/${TARGET}"` step creates the builders/ccaas directory, just like it creates the bin directory. Therefore there is no need to later create this directory or cp the content since it already exists in the correct location. Signed-off-by: David Enyeart --- ci/scripts/create_binary_package.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/ci/scripts/create_binary_package.sh b/ci/scripts/create_binary_package.sh index 13277b095c5..3c6ce7dbf9e 100755 --- a/ci/scripts/create_binary_package.sh +++ b/ci/scripts/create_binary_package.sh @@ -6,11 +6,9 @@ set -euo pipefail make "release/${TARGET}" mkdir -p "release/${TARGET}/config" -mkdir -p "release/${TARGET}/builders/ccaas" # cp not move otherwise this breaks your source tree cp sampleconfig/*yaml "release/${TARGET}/config" -cp ccaas_builder/bin/${TARGET}/* "release/${TARGET}/builders/ccaas" cd "release/${TARGET}" if [ "$TARGET" == "windows-amd64" ]; then