28 lines
417 B
Bash
Executable File
28 lines
417 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
# DEBUG
|
|
set -x
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")"
|
|
|
|
# includes functions:
|
|
# common_start
|
|
# common_end
|
|
. ./build__common.sh
|
|
|
|
# vars used in common_start and end
|
|
target='instance-autotest-pair'
|
|
persistence='n'
|
|
idhubs='idhub1 idhub2'
|
|
idhub_branch='release'
|
|
|
|
common_start
|
|
|
|
common_end
|
|
}
|
|
|
|
main "${@}"
|