Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion build.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -1995,14 +1995,17 @@ function Start-PSBootstrap {
# Build tools
$Deps += "cmake"

# wget for downloading dotnet
$Deps += "wget"

Comment thread
kondratyev-nv marked this conversation as resolved.
# .NET Core required runtime libraries
$Deps += "openssl"

# Install dependencies
# ignore exitcode, because they may be already installed
Start-NativeExecution ([ScriptBlock]::Create("$PackageManager install $Deps")) -IgnoreExitcode
} elseif ($environment.IsLinux -and $environment.IsAlpine) {
$Deps += 'libunwind', 'libcurl', 'bash', 'cmake', 'clang', 'build-base', 'git', 'curl'
$Deps += 'libunwind', 'libcurl', 'bash', 'cmake', 'clang', 'build-base', 'git', 'curl', 'wget'

Start-NativeExecution {
Invoke-Expression "apk add $Deps"
Expand Down