com.stephenschafer.budget.web/build-war

8 lines
166 B
Text
Raw Normal View History

2025-07-13 09:38:54 -06:00
#!/bin/sh
2026-01-17 10:01:05 -07:00
if mvn -f pom.xml clean install > build-war.log 2> build-war.err.log; then
2025-07-13 09:38:54 -06:00
echo "success"
cp target/*.war /tmp
else
echo "failure"
exit 1
fi