Skip to content

Commit 3b454fc

Browse files
committed
chore: update asset name for thumbnail handler to use underscores
1 parent dcdd2fc commit 3b454fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install-thumbnail-handler.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $match = [regex]::Match($tag, '\d+\.\d+\.\d+([\-\+][A-Za-z0-9\.-]+)?')
2929
$version = if ($match.Success) { $match.Value } else { $tag.TrimStart('v') }
3030

3131
# Find the thumbnail handler DLL asset
32-
$assetName = "ltk-tex-thumb-handler.dll"
32+
$assetName = "ltk_tex_thumb_handler.dll"
3333
$asset = $release.assets | Where-Object { $_.name -eq $assetName } | Select-Object -First 1
3434
if (-not $asset) {
3535
throw "Could not find $assetName in the latest release. Make sure you're using a release that includes the thumbnail handler."

0 commit comments

Comments
 (0)