mirror of
https://github.com/bia-technologies/bsl-parser.git
synced 2024-11-19 20:31:44 +02:00
13 lines
191 B
Bash
Executable File
13 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
rm "*.ospx"
|
|
|
|
result=$(oscript -version)
|
|
|
|
if [[ $result = "1.0.19.105" ]]; then
|
|
opm build . -mf ./packagedef -out .
|
|
else
|
|
opm build -m ./packagedef -o .
|
|
fi
|
|
|
|
opm install -f *.ospx
|