From 9794d956a4b3f1511eb2ebd9bb9625ccd599c286 Mon Sep 17 00:00:00 2001 From: David Vo Date: Sat, 11 Jan 2025 13:51:54 +1100 Subject: [PATCH] Select tarballs for VSCode on Linux ARM (#508) --- 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"; }