mirror of https://github.com/databricks/cli.git
(ci/cd debug) wrap bash variable into quotes to avoid replacements in windows environments
This commit is contained in:
parent
ee69dbe00e
commit
35d4a70739
|
@ -12,7 +12,7 @@ export EXPERIMENT_NAME
|
|||
envsubst < databricks.yml > out.yml && mv out.yml databricks.yml
|
||||
|
||||
title "Create a pre-defined experiment"
|
||||
EXPERIMENT_ID=$($CLI experiments create-experiment ${EXPERIMENT_NAME} | jq -r '.experiment_id')
|
||||
EXPERIMENT_ID=$($CLI experiments create-experiment "${EXPERIMENT_NAME}" | jq -r '.experiment_id')
|
||||
|
||||
cleanupRemoveExperiment() {
|
||||
title "Test cleanup: "
|
||||
|
|
Loading…
Reference in New Issue