We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b94f6 commit 7ecdae4Copy full SHA for 7ecdae4
1 file changed
lib/shared.bash
@@ -86,6 +86,13 @@ function plugin_read_list_into_result() {
86
[[ ${#result[@]} -gt 0 ]] || return 1
87
}
88
89
+function plugin_config_exists() {
90
+ local var="BUILDKITE_PLUGIN_DOCKER_COMPOSE_${1}"
91
+
92
+ # Check if the variable is set
93
+ [ "${!var+is_set}" != "" ]
94
+}
95
96
# Returns the name of the docker compose project for this build
97
function docker_compose_project_name() {
98
# No dashes or underscores because docker-compose will remove them anyways
0 commit comments