mirror of https://github.com/docker/cli.git
Merge pull request #1579 from ijc/e2e-invocation-nit
e2e: assign a default value of 0 to `DOCKERD_EXPERIMENTAL`
This commit is contained in:
commit
283d8f95c8
|
@ -17,7 +17,7 @@ function setup {
|
||||||
local project=$1
|
local project=$1
|
||||||
local file=$2
|
local file=$2
|
||||||
|
|
||||||
test "${DOCKERD_EXPERIMENTAL:-}" -eq "1" && file="${file}:./e2e/compose-env.experimental.yaml"
|
test "${DOCKERD_EXPERIMENTAL:-0}" -eq "1" && file="${file}:./e2e/compose-env.experimental.yaml"
|
||||||
|
|
||||||
if [[ "${TEST_CONNHELPER:-}" = "ssh" ]];then
|
if [[ "${TEST_CONNHELPER:-}" = "ssh" ]];then
|
||||||
test ! -f "${HOME}/.ssh/id_rsa" && ssh-keygen -t rsa -C docker-e2e-dummy -N "" -f "${HOME}/.ssh/id_rsa" -q
|
test ! -f "${HOME}/.ssh/id_rsa" && ssh-keygen -t rsa -C docker-e2e-dummy -N "" -f "${HOME}/.ssh/id_rsa" -q
|
||||||
|
|
Loading…
Reference in New Issue