Skip to content

Commit

Permalink
Remove leftover cruft from script
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroberts committed Sep 26, 2022
1 parent 14f790b commit 5e60066
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions substrate/run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -120,27 +120,15 @@ $depContents = Get-Content "${depPath}" | Where-Object {$_ -like '*=*'}
for($i = 0; $i -lt $depContents.count; $i++) {
$line = $depContents[$i]
$parts = $line.Split("=", 2)
Write-Host "Parts: ${parts}"
$

$DepVersions.Add($parts[0], $parts[1].Replace('"', ""))
}

Write-Host "Version deps: ${DepVersions}"
Write-Error "Halting"

$DepCache = "https://vagrant-public-cache.s3.amazonaws.com/installers/dependencies"

$CurlURL = "${DepCache}/curl-$($DepVersions.curl_version).zip"
$Libssh2URL = "${DepCache}/libssh2-$($DepVersions.libssh2_version).zip"
$ZlibURL = "${DepCache}/zlib-$($DepVersions.zlib_version).zip"

# NOTE: We pull artifacts from our cache so we don't need to worry about availability. These
# original URL values are left as guidance on where to source the zip artifacts
# $ZlibURL = "https://github.com/madler/zlib/archive/v${ZlibVersion}.zip"
# $CurlURL = "https://github.com/curl/curl/releases/download/curl-${CurlVersionUnderscore}/${CurlRemoteFilename}"
# $Libssh2URL = "https://github.com/libssh2/libssh2/archive/libssh2-${Libssh2Version}.zip"

# Allow HTTPS connections to work
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12

Expand Down

0 comments on commit 5e60066

Please sign in to comment.