Added the following snippet to the Windows version of the verification script [1]"

set ARCHIVES_LOGFILE=archives.txt
for /D %%i in (jclouds*) do (
  echo Seaching in %%i >> "%ARCHIVES_LOGFILE%"
  for %%j in (.jar,.bin,.zip,.tar.gz) do (
    echo Seaching for %%j... >> "%ARCHIVES_LOGFILE%"
    dir /S /B %%i\*%%j >> "%ARCHIVES_LOGFILE%" 2>&1
  )
)

Does this make sense? Should we add something similar to the Unix version?

ap

[1] http://people.apache.org/~andrewp/verify-jclouds.cmd

Reply via email to