From 8f562920ca9beb290ca9d96efe47403d94e8af9e Mon Sep 17 00:00:00 2001 From: Anders Swanson Date: Tue, 8 Oct 2024 08:56:15 -0700 Subject: [PATCH] Fix sco deploy script Signed-off-by: Anders Swanson --- spring-cloud-oci/scripts/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-oci/scripts/deploy b/spring-cloud-oci/scripts/deploy index 750a1d40..a56edbb0 100755 --- a/spring-cloud-oci/scripts/deploy +++ b/spring-cloud-oci/scripts/deploy @@ -54,7 +54,7 @@ echo "Successfully deployed project to ${REPOSITORY_URL}/${REPOSITORY_NAME}" PACKAGES="$(mvn -Dexec.executable='echo' -Dexec.args='${project.artifactId}' exec:exec -q)" printf "The following artifacts have been created for upload:\n\n" for PACKAGE in $PACKAGES; do - if [[ "$PACKAGE" != *"-sample"* ]] && [[ "$PACKAGE" != "spring-cloud-oci-docs" ]] && [[ "$PACKAGE" != "spring-cloud-oci-dependencies" ]]; then + if [[ "$PACKAGE" != *"-sample"* ]] && [[ "$PACKAGE" != "spring-cloud-oci-docs" ]]; then echo "com.oracle.cloud.spring:${PACKAGE}:${VERSION}" fi done