From 69bfb3b5cd5e4bce7455e4d0ff0a987dbbbb5f6c Mon Sep 17 00:00:00 2001 From: elianddb Date: Mon, 15 Sep 2025 17:22:01 -0700 Subject: [PATCH] fix typo --- integration-tests/bats/docker-entrypoint.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/bats/docker-entrypoint.bats b/integration-tests/bats/docker-entrypoint.bats index e393263058..7d1f7f07de 100644 --- a/integration-tests/bats/docker-entrypoint.bats +++ b/integration-tests/bats/docker-entrypoint.bats @@ -20,7 +20,7 @@ setup() { # Build from source only once per test run (check if image already exists) if ! docker image inspect "$TEST_IMAGE" >/dev/null 2>&1; then echo "Building Dolt from source for integration tests..." - docker build -f "$WORKSPACE_ROOT/doltx``/docker/serverDockerfile" --build-arg DOLT_VERSION=$DOLT_DOCKER_TEST_VERSION -t "$TEST_IMAGE" "$WORKSPACE_ROOT" + docker build -f "$WORKSPACE_ROOT/dolt``/docker/serverDockerfile" --build-arg DOLT_VERSION=$DOLT_DOCKER_TEST_VERSION -t "$TEST_IMAGE" "$WORKSPACE_ROOT" else echo "Using existing source-built image: $TEST_IMAGE" fi