mirror of https://github.com/databricks/cli.git
Replace window slashes in output
This commit is contained in:
parent
9f46026d5f
commit
9e42f66a13
|
@ -15,10 +15,10 @@ title "variable has value in config file"
|
|||
trace $CLI bundle validate -o json --target with_value | jq $cluster_expr
|
||||
|
||||
title "file cannot be parsed"
|
||||
trace errcode $CLI bundle validate -o json --target invalid_json | jq $cluster_expr
|
||||
trace errcode $CLI bundle validate -o json --target invalid_json | jq $cluster_expr | sed 's/\\/\//g'
|
||||
|
||||
title "file has wrong structure"
|
||||
trace errcode $CLI bundle validate -o json --target wrong_file_structure | jq $cluster_expr
|
||||
trace errcode $CLI bundle validate -o json --target wrong_file_structure | jq $cluster_expr | sed 's/\\/\//g'
|
||||
|
||||
title "file has variable that is complex but default is string"
|
||||
trace errcode $CLI bundle validate -o json --target complex_to_string | jq $cluster_expr
|
||||
|
|
Loading…
Reference in New Issue