Skip to content
Snippets Groups Projects
Commit 663619a6 authored by Benedikt's avatar Benedikt
Browse files

Add mvnw detection to assemble script

parent 1ea02612
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,11 @@ echo "---> Installing application source"
cp -Rf /tmp/src/. ./
echo "---> Building Spring Boot application from source"
mvn clean install
if [ -f "mvnw" ]; then
./mvnw clean install
else
mvn clean install
fi
# Fix source directory permissions
fix-permissions ./
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment