mirror of
https://github.com/bia-technologies/os-confluence.git
synced 2026-06-18 20:02:33 +02:00
13 lines
191 B
Bash
13 lines
191 B
Bash
#!/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
|