mirror of
https://github.com/bia-technologies/bsl-parser.git
synced 2024-11-19 20:31:44 +02:00
12 lines
234 B
Batchfile
Executable File
12 lines
234 B
Batchfile
Executable File
@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 |