Skip to content

Commit

Permalink
Add the change to ubuntu 20.04 to use sudo
Browse files Browse the repository at this point in the history
sudo is needed for this to pass in all cases
  • Loading branch information
nagilson committed Oct 18, 2023
1 parent 8e06ab0 commit 1a83c40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vscode-dotnet-runtime-library/distro-data/distro-support.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
}
],
"preInstallCommands": [
"apt-get update && apt install -y wget",
"wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb",
"sudo dpkg -i packages-microsoft-prod.deb && rm packages-microsoft-prod.deb"
"sudo apt-get update && sudo apt install -y wget",
"sudo wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb",
"sudo dpkg -i packages-microsoft-prod.deb"
]
},
{
Expand Down

0 comments on commit 1a83c40

Please sign in to comment.