Skip to content

Commit

Permalink
Merge pull request #9837 from murdos/fix/starting-gradle-spring-boot-…
Browse files Browse the repository at this point in the history
…app-in-ci

fix(ci): filter additional jar to be able to start gradle app
  • Loading branch information
murdos authored May 19, 2024
2 parents 4bd645a + 3c95f89 commit 2443b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests-ci/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fi
echo "*** Identifying application executable..."
export EXEC_JAR=$(\
find . -maxdepth 1 -name "*-exec.jar" | grep . \
|| find . -maxdepth 1 -name "*.jar" | grep -v "\-javadoc" | grep -v "\-sources" | grep -v "\-tests" \
|| find . -maxdepth 1 -name "*.jar" | grep -v "\-javadoc" | grep -v "\-sources" | grep -v "\-tests" | grep -v "\-plain" \
)

echo "*** Starting application using ${EXEC_JAR}..."
Expand Down

0 comments on commit 2443b0d

Please sign in to comment.