Skip to content

Commit 6f9ca58

Browse files
Fix sco deploy script (#145)
Signed-off-by: Anders Swanson <anders.swanson@oracle.com>
1 parent 618aa07 commit 6f9ca58

File tree

1 file changed

+1
-1
lines changed
  • spring-cloud-oci/scripts

1 file changed

+1
-1
lines changed

spring-cloud-oci/scripts/deploy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ echo "Successfully deployed project to ${REPOSITORY_URL}/${REPOSITORY_NAME}"
5454
PACKAGES="$(mvn -Dexec.executable='echo' -Dexec.args='${project.artifactId}' exec:exec -q)"
5555
printf "The following artifacts have been created for upload:\n\n"
5656
for PACKAGE in $PACKAGES; do
57-
if [[ "$PACKAGE" != *"-sample"* ]] && [[ "$PACKAGE" != "spring-cloud-oci-docs" ]] && [[ "$PACKAGE" != "spring-cloud-oci-dependencies" ]]; then
57+
if [[ "$PACKAGE" != *"-sample"* ]] && [[ "$PACKAGE" != "spring-cloud-oci-docs" ]]; then
5858
echo "com.oracle.cloud.spring:${PACKAGE}:${VERSION}"
5959
fi
6060
done

0 commit comments

Comments
 (0)