From e9a965f47d567cc18ac9b07f51c96e0bcf0f60e5 Mon Sep 17 00:00:00 2001 From: Terrance Date: Sat, 18 Apr 2026 14:21:52 +0100 Subject: [PATCH] Minetest/Luanti: Fix Start Menu shortcut target The main executable is now called `luanti.exe`, but the Start Menu shortcut still references `minetest.exe`. --- automatic/minetest/tools/chocolateyinstall.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automatic/minetest/tools/chocolateyinstall.ps1 b/automatic/minetest/tools/chocolateyinstall.ps1 index cdfe55f99..45a9b1a98 100644 --- a/automatic/minetest/tools/chocolateyinstall.ps1 +++ b/automatic/minetest/tools/chocolateyinstall.ps1 @@ -17,5 +17,5 @@ Remove-Item -Path $packageArgs.file,$packageArgs.file64 # Install start menu shortcut $programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) $shortcutFilePath = Join-Path $programs 'Luanti.lnk' -$targetPath = Join-Path "$toolsLocation" "luanti-5.15.2-win$(Get-OSArchitectureWidth)\bin\minetest.exe" +$targetPath = Join-Path "$toolsLocation" "luanti-5.15.2-win$(Get-OSArchitectureWidth)\bin\luanti.exe" Install-ChocolateyShortcut -ShortcutFilePath $shortcutFilePath -TargetPath $targetPath