mirror of
https://github.com/bia-technologies/sonar-helper.git
synced 2026-06-18 17:24:22 +02:00
13 lines
235 B
Batchfile
13 lines
235 B
Batchfile
@echo off
|
|
call del "*.ospx"
|
|
|
|
for /f %%i in ('"oscript -version"') do set result=%%i
|
|
|
|
if %result%==1.0.19.105 (
|
|
call opm build . -mf ./packagedef -out .
|
|
) else (
|
|
call opm build -m ./packagedef -o .
|
|
)
|
|
|
|
call opm install -f *.ospx
|