Skip to content

Commit

Permalink
Correct Download.ps1 path for mssql downloads (dotnet#29701)
Browse files Browse the repository at this point in the history
* Correct Download.ps1 path for mssql downloads

* Update eng/helix/content/mssql/InstallSqlServerLocalDB.ps1
  • Loading branch information
TanayParikh authored Jan 27, 2021
1 parent 79803af commit ace9b75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/helix/content/mssql/InstallSqlServerLocalDB.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $installerFilename = "SqlLocalDB.msi"
$installerPath = "$intermedateDir\$installerFilename"
Write-Host ""
Write-Host "Downloading '$installerFilename' to '$installerPath'."
& $PSScriptRoot\Download.ps1 'https://download.microsoft.com/download/9/0/7/907AD35F-9F9C-43A5-9789-52470555DB90/ENU/SqlLocalDB.msi' $installerPath
& "$PSScriptRoot\..\Download.ps1" 'https://download.microsoft.com/download/9/0/7/907AD35F-9F9C-43A5-9789-52470555DB90/ENU/SqlLocalDB.msi' $installerPath

# Install LocalDB.
$arguments = '/package', "`"$installerPath`"", '/NoRestart', '/Passive', `
Expand Down

0 comments on commit ace9b75

Please sign in to comment.