From 38413caa2089d3bfdcd5172ed31ac33941c681d0 Mon Sep 17 00:00:00 2001 From: Malena Casas Date: Tue, 12 Nov 2024 10:12:03 -0300 Subject: [PATCH] Add more messages to testing --- build-scripts/assemble.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-scripts/assemble.sh b/build-scripts/assemble.sh index 05cd0b9f60870..562160b62210e 100644 --- a/build-scripts/assemble.sh +++ b/build-scripts/assemble.sh @@ -232,9 +232,10 @@ function install_plugins() { if [[ -f "${maven_repo_local}/org/opensearch/plugin/${plugin}/${VERSION}.0/${plugin}-${VERSION}.0.zip" ]]; then echo "Plugin ${plugin} is already present, download omitted." else - echo "Downloand ${plugin} plugin." + echo "Downloand ${plugin} plugin" mvn -Dmaven.repo.local="${maven_repo_local}" org.apache.maven.plugins:maven-dependency-plugin:2.1:get -DrepoUrl=https://repo1.maven.org/maven2 -Dartifact="${plugin_from_maven}:zip" fi + echo "LOG TESTTTT: Install file -> ${maven_repo_local}/org/opensearch/plugin/${plugin}/${VERSION}.0/${plugin}-${VERSION}.0.zip" OPENSEARCH_PATH_CONF=$PATH_CONF "${PATH_BIN}/opensearch-plugin" install --batch --verbose "file:${maven_repo_local}/org/opensearch/plugin/${plugin}/${VERSION}.0/${plugin}-${VERSION}.0.zip" done