diff --git a/choco/tinytex.nuspec b/choco/tinytex.nuspec index d4087a1..43217d7 100644 --- a/choco/tinytex.nuspec +++ b/choco/tinytex.nuspec @@ -3,7 +3,7 @@ tinytex - 2024.01 + 2024.02 https://github.com/rstudio/tinytex-releases/tree/master/choco naveen521kk TinyTeX diff --git a/choco/tools/chocolateyinstall.ps1 b/choco/tools/chocolateyinstall.ps1 index cfed4f7..69b262b 100644 --- a/choco/tools/chocolateyinstall.ps1 +++ b/choco/tools/chocolateyinstall.ps1 @@ -1,12 +1,12 @@ $ErrorActionPreference = 'Stop'; -$version = '2024.01'; +$version = '2024.02'; $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 = 'fd4c43144c8ecf3633e5ddb772ef315c' + checksum = 'f32d5f20076a481db07b36448deffa9e' checksumType = 'md5' }