File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -300,6 +300,8 @@ impl Platform {
300300 Some ( Platform :: WindowsX64 )
301301 } else if cfg ! ( all( target_os = "windows" , target_arch = "x86" ) ) {
302302 Some ( Platform :: WindowsX86 )
303+ } else if cfg ! ( all( target_os = "windows" , target_arch = "aarch64" ) ) {
304+ Some ( Platform :: WindowsARM64 )
303305 } else {
304306 None
305307 }
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ impl PreReqChecker {
3939 #[ cfg( not( target_os = "linux" ) ) ]
4040 pub async fn verify ( & self ) -> Result < Platform , AnyError > {
4141 Platform :: env_default ( ) . ok_or_else ( || {
42- SetupError ( "VS Code it not supported on this platform" . to_owned ( ) ) . into ( )
42+ SetupError ( "VS Code is not supported on this platform" . to_owned ( ) ) . into ( )
4343 } )
4444 }
4545
You can’t perform that action at this time.
0 commit comments