diff --git a/choco/tinytex.nuspec b/choco/tinytex.nuspec index 94b37db..83c4878 100644 --- a/choco/tinytex.nuspec +++ b/choco/tinytex.nuspec @@ -3,7 +3,7 @@ tinytex - 2024.07.03 + 2024.09 https://github.com/rstudio/tinytex-releases/tree/master/choco naveen521kk TinyTeX diff --git a/choco/tools/chocolateyinstall.ps1 b/choco/tools/chocolateyinstall.ps1 index 307820a..15f95d9 100644 --- a/choco/tools/chocolateyinstall.ps1 +++ b/choco/tools/chocolateyinstall.ps1 @@ -1,12 +1,12 @@ $ErrorActionPreference = 'Stop'; -$version = '2024.07.03'; +$version = '2024.09'; $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 = 'e2ba6ed49638ffb72f06beec6b506318' + checksum = '4a2f59c99d370716baeb8072b59970d7' checksumType = 'md5' }