Skip to content

Commit

Permalink
6914: Fix windows check formatting script
Browse files Browse the repository at this point in the history
Reviewed-by: hirt, ghb
  • Loading branch information
jpbempel authored and thegreystone committed Oct 6, 2020
1 parent 581a13f commit 1250b52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/checkformatting.bat
@@ -1,15 +1,15 @@
@echo off
echo "======== Building p2 repo ==================="
cd releng\third-party
mvn p2:site
call mvn p2:site || EXIT /B 1
echo "======== Starting p2 repo ==================="
start /B cmd /C "mvn jetty:run"
cd ..\..\core
echo "======== Installing core ===================="
call mvn install
call mvn install || EXIT /B 2
echo "======== Running spotless for core =========="
mvn spotless:check
call mvn spotless:check || EXIT /B 3
echo "======== Running spotless for application ==="
cd ..
mvn -Puitests spotless:check
call mvn -Puitests spotless:check || EXIT /B 4
echo "======== Finished ==========================="

0 comments on commit 1250b52

Please sign in to comment.