From e259b2e0b64d0aea3fa9f48c8d2ba92dd95f97f5 Mon Sep 17 00:00:00 2001 From: Jonathan Guyer Date: Wed, 2 Oct 2024 15:37:54 -0400 Subject: [PATCH] Debug chown --- .azure/templates/install.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.azure/templates/install.yml b/.azure/templates/install.yml index 4e3bdd7b3f..5b05a802de 100644 --- a/.azure/templates/install.yml +++ b/.azure/templates/install.yml @@ -20,7 +20,11 @@ steps: # On Hosted macOS, the agent user doesn't have ownership of Miniconda's installation directory/ # We need to take ownership if we want to update conda or install packages globally - - bash: sudo chown -R $USER $CONDA + - bash: | + echo USER $USER + echo CONDA $CONDA + echo sudo chown -R $USER $CONDA + sudo chown -R $USER $CONDA displayName: Take ownership of conda installation condition: startsWith(variables.image, 'macos')