wudsn-ide/com.wudsn.site.update/check-bundle-versions.bat

30 lines
892 B
Batchfile
Raw Normal View History

2018-12-30 21:01:35 +00:00
@echo off
setlocal
set PATH=%PATH%;C:\jac\bin\wbin
2018-12-30 23:01:04 +00:00
cd C:\jac\system\Java\Programming\Repositories\WUDSN-IDE
2018-12-30 21:01:35 +00:00
call :check com.wudsn.ide.asm
call :check com.wudsn.ide.asm.compilers
call :check com.wudsn.ide.asm.compilers.test
call :check com.wudsn.ide.base
2019-08-31 13:02:35 +00:00
call :check com.wudsn.ide.hex
2018-12-30 21:01:35 +00:00
call :check com.wudsn.ide.dsk
call :check com.wudsn.ide.gfx
2019-08-31 13:02:35 +00:00
call :check com.wudsn.ide.pas
2018-12-30 21:01:35 +00:00
call :check com.wudsn.ide.snd
call :check com.wudsn.ide.base.feature
call :check com.wudsn.ide.feature
goto :eof
:check
rem echo | set /p=%1
echo %1
if exist %1\META-INF\MANIFEST.MF grep Bundle-Version %1\META-INF\MANIFEST.MF
if exist %1\META-INF\MANIFEST.MF grep Bundle-RequiredExecutionEnvironment %1\META-INF\MANIFEST.MF
if exist %1\build.properties grep jre.compilation.profile %1\build.properties
if exist %1\feature.xml grep version= %1\feature.xml
echo.
goto :eof