Skip to content

Commit

Permalink
Debug chown
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Oct 2, 2024
1 parent 88121ce commit e259b2e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .azure/templates/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit e259b2e

Please sign in to comment.