summaryrefslogtreecommitdiff
path: root/Chalice/tests/test-scripts/generate_reference_all.bat
blob: 83b04700c89b0aa3abbc1641655717bb7e5e1630 (plain)
1
2
3
4
5
6
7
8
9
10
@echo off

set getboogieoutput="%~dp0\getboogieoutput.bat"

for /F %%f in ('dir *.chalice /b') do (
  echo   Generating reference for %%~nf.chalice ...
  call %getboogieoutput% %%~nf %1 %2 %3 %4 %5 %6 %7
)

exit /b 0