Skip to content

Commit

Permalink
Revert "chocolatey-visualstudio.extension: verify manifest checksum d…
Browse files Browse the repository at this point in the history
…uring download, if known"

The checksum and size of the component manifest in the channel manifest
seem totally bogus.

This reverts commit f8de214.

GitHub-Issue: GH-7 GH-8 GH-10 GH-26
  • Loading branch information
jberezanski committed May 15, 2018
1 parent 8df8391 commit 07e6ba8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Expand Up @@ -26,7 +26,8 @@ function Get-VSComponentManifest
return $null
}

$catalogManifest = Get-VSManifest -Description 'catalog manifest' -Url $url -Checksum $checksum -ChecksumType $checksumType -LayoutFileName 'Catalog.json' -LayoutPath $layoutPath
# TODO: pass -Checksum and -ChecksumType
$catalogManifest = Get-VSManifest -Description 'catalog manifest' -Url $url -LayoutFileName 'Catalog.json' -LayoutPath $layoutPath

return $catalogManifest
}
Expand Up @@ -5,8 +5,6 @@ function Get-VSManifest
(
[Parameter(Mandatory = $true)] [string] $Description,
[Parameter(Mandatory = $true)] [string] $Url,
[string] $Checksum,
[string] $ChecksumType,
[string] $LayoutFileName,
[string] $LayoutPath
)
Expand Down Expand Up @@ -63,8 +61,6 @@ function Get-VSManifest
packageName = $Description
fileFullPath = $localFilePath
url = $Url
checksum = $Checksum
checksumType = $ChecksumType
}

Set-StrictMode -Off
Expand Down

0 comments on commit 07e6ba8

Please sign in to comment.