Skip to content
Snippets Groups Projects
Commit 24931152 authored by Thomas  MENARD's avatar Thomas MENARD
Browse files

Add debug output

parent 5ce89df4
No related branches found
No related tags found
No related merge requests found
Pipeline #
#!/bin/bash
set -e
ls /tmp/src
echo "---> Installing application source"
cp -Rf /tmp/. ./
echo "---> Cleaning eventually static files hosted in src/...."
rm -rf ./src/main/resources/static/*
echo "---> Building static files"
cd static
npm install
ng build --prod
cd src/static
npm install -f
ls -l ./node_modules/
./node_modules/angular-cli/bin/ng build --prod
mv ./dist/* ../src/main/resources/static/
echo "---> Building Spring Boot application from source"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment