This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
idhub-docker/build__pilot-xo9b.sh

26 lines
357 B
Bash
Raw Permalink Normal View History

2024-01-09 09:49:05 +00:00
#!/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='pilot-xo9b'
2024-03-18 09:18:49 +00:00
idhubs='idhub1 idhub2 idhub3'
2024-01-09 09:49:05 +00:00
common_start
2024-01-09 09:49:05 +00:00
common_end
2024-01-09 09:49:05 +00:00
}
main "${@}"