You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
219 B
Batchfile
6 lines
219 B
Batchfile
5 years ago
|
SET "JAVA_HOME=C:\opt\jdk-8"
|
||
|
SET PATH=%PATH%;C:\Program Files\Git\usr\bin
|
||
|
cd git-repo
|
||
|
|
||
|
echo ".\mvnw clean install" > build.log
|
||
|
.\mvnw clean install >> build.log 2>&1 || (sleep 1 && tail -n 3000 build.log && exit 1)
|