Skip to content

Commit 283d8f9

Browse files
Merge pull request #1579 from ijc/e2e-invocation-nit
e2e: assign a default value of 0 to `DOCKERD_EXPERIMENTAL`
2 parents 298c423 + 4f48327 commit 283d8f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • scripts/test/e2e

scripts/test/e2e/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function setup {
1717
local project=$1
1818
local file=$2
1919

20-
test "${DOCKERD_EXPERIMENTAL:-}" -eq "1" && file="${file}:./e2e/compose-env.experimental.yaml"
20+
test "${DOCKERD_EXPERIMENTAL:-0}" -eq "1" && file="${file}:./e2e/compose-env.experimental.yaml"
2121

2222
if [[ "${TEST_CONNHELPER:-}" = "ssh" ]];then
2323
test ! -f "${HOME}/.ssh/id_rsa" && ssh-keygen -t rsa -C docker-e2e-dummy -N "" -f "${HOME}/.ssh/id_rsa" -q

0 commit comments

Comments
 (0)