com.stephenschafer.budget.web/build-war
2026-01-17 10:01:05 -07:00

8 lines
No EOL
166 B
Bash
Executable file

#!/bin/sh
if mvn -f pom.xml clean install > build-war.log 2> build-war.err.log; then
echo "success"
cp target/*.war /tmp
else
echo "failure"
exit 1
fi