diff --git a/choco/tinytex.nuspec b/choco/tinytex.nuspec index 37cb4ba..6972490 100644 --- a/choco/tinytex.nuspec +++ b/choco/tinytex.nuspec @@ -3,7 +3,7 @@ tinytex - 2024.05 + 2024.06 https://github.com/rstudio/tinytex-releases/tree/master/choco naveen521kk TinyTeX diff --git a/choco/tools/chocolateyinstall.ps1 b/choco/tools/chocolateyinstall.ps1 index 15839b8..05d541f 100644 --- a/choco/tools/chocolateyinstall.ps1 +++ b/choco/tools/chocolateyinstall.ps1 @@ -1,12 +1,12 @@ $ErrorActionPreference = 'Stop'; -$version = '2024.05'; +$version = '2024.06'; $toolsDir = Get-ToolsLocation $url = "https://github.com/rstudio/tinytex-releases/releases/download/v$($version)/TinyTeX-1-v$($version).zip" $packageArgs = @{ packageName = $env:ChocolateyPackageName unzipLocation = $toolsDir url = $url - checksum = 'f6a9f018b64582d8aa6c734a5f2bfbe7' + checksum = 'b364c2b3a370c5da78abb3468cfb173f' checksumType = 'md5' }