From 4ad884d94f5341d94a230e7a845da970bf46b68e Mon Sep 17 00:00:00 2001 From: David Vo Date: Fri, 10 Jan 2025 01:04:41 +1100 Subject: [PATCH] Select tarballs for VSCode on Linux ARM --- WPILibInstaller-Avalonia/ViewModels/VSCodePageViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WPILibInstaller-Avalonia/ViewModels/VSCodePageViewModel.cs b/WPILibInstaller-Avalonia/ViewModels/VSCodePageViewModel.cs index 2b6ae7f9..58e9209b 100644 --- a/WPILibInstaller-Avalonia/ViewModels/VSCodePageViewModel.cs +++ b/WPILibInstaller-Avalonia/ViewModels/VSCodePageViewModel.cs @@ -185,7 +185,7 @@ private async Task SelectVsCodeFunc() var currentPlatform = PlatformUtils.CurrentPlatform; String extension; - if (currentPlatform == Platform.Linux64) + if (currentPlatform == Platform.Linux64 || currentPlatform == Platform.LinuxArm64) { extension = "tar.gz"; }