From d5389c3387aa1d61317d31270a1684ea60495098 Mon Sep 17 00:00:00 2001 From: Tural Neymanov Date: Tue, 16 Apr 2019 15:35:42 -0400 Subject: [PATCH] Modify entry script to execute command as is, if supplied to pipelines API directly. --- docker/pipelines_runner.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/pipelines_runner.sh b/docker/pipelines_runner.sh index 5427d89e9..0688aa916 100755 --- a/docker/pipelines_runner.sh +++ b/docker/pipelines_runner.sh @@ -51,6 +51,9 @@ function parse_args { } function main { + if [[ $1 == /opt/gcp_variant_transforms/bin/* ]]; then + exec $@ + fi parse_args "$@" google_cloud_project="${google_cloud_project:-$(gcloud config get-value project)}"