We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b959aa1 commit bcde3a2Copy full SHA for bcde3a2
1 file changed
run-demo.bat
@@ -1,8 +1,15 @@
1
@echo off
2
chcp 65001 >nul
3
cd /d "%~dp0"
4
-echo [FastFileIndex] Running Demo (via JitPack)...
+
5
+echo ⚡ Building Main Project...
6
+call mvn clean package -DskipTests -q
7
+if %ERRORLEVEL% NEQ 0 ( echo ❌ Benchmark failed. & pause & exit /b %ERRORLEVEL% )
8
9
+echo 🚀 Running Demo...
10
cd examples\Demo
-call mvn compile exec:java -Dexec.mainClass=fastfileindex.Demo
11
+call mvn compile exec:java -Dexec.mainClass=fastfileindex.Demo -q
12
13
14
cd ..\..
15
pause
0 commit comments