From 3b18a635df8f1de2d2ddd7d8094d349f860084e9 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 19 Aug 2026 00:46:32 -0700 Subject: [PATCH] ci: call the apt helper from the workflow's working directory (#10832) The e2e workflow sets defaults.run.working-directory: docker, so the call I added resolved to docker/docker/apt-install and every FUSE Mount run has failed with 'sudo: docker/apt-install: command not found' since it merged. --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index aa79529bf..0e5888011 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -64,7 +64,7 @@ jobs: sudo rm -f /etc/apt/sources.list.d/azure-cli.list /etc/apt/sources.list.d/microsoft-prod.list # Same helper the e2e image installs through: the runner's own list is # azure-only too, and an outage there fails this step outright. - sudo docker/apt-install fuse + sudo ./apt-install fuse # Verify FUSE installation echo "FUSE version: $(fusermount --version 2>&1 || echo 'fusermount not found')"