github.com/openshift-online/ocm-sdk-go@v0.1.473/hack/init.sh (about) 1 #!/usr/bin/env bash 2 3 # This script is meant to be the entrypoint for OpenShift Bash scripts to import all of the support 4 # libraries at once in order to make Bash script preambles as minimal as possible. This script recur- 5 # sively `source`s *.sh files in this directory tree. As such, no files should be `source`ed outside 6 # of this script to ensure that we do not attempt to overwrite read-only variables. 7 8 set -o errexit 9 set -o nounset 10 set -o pipefail 11 12 GENERATED_CLIENT_DIRS=( 13 accesstransparency \ 14 accountsmgmt \ 15 addonsmgmt \ 16 authorizations \ 17 clustersmgmt \ 18 arohcp \ 19 errors \ 20 helpers \ 21 jobqueue \ 22 servicelogs \ 23 servicemgmt \ 24 statusboard \ 25 webrca \ 26 osdfleetmgmt 27 )