You've already forked snippet-transform
mirror of
https://github.com/bia-technologies/snippet-transform.git
synced 2025-07-16 01:54:16 +02:00
13 lines
309 B
Batchfile
13 lines
309 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 .
|
|
)
|
|
|
|
rem // TODO: наименование приложения и версия
|
|
call opm install -f *.ospx |