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 {
300
300
Some ( Platform :: WindowsX64 )
301
301
} else if cfg ! ( all( target_os = "windows" , target_arch = "x86" ) ) {
302
302
Some ( Platform :: WindowsX86 )
303
+ } else if cfg ! ( all( target_os = "windows" , target_arch = "aarch64" ) ) {
304
+ Some ( Platform :: WindowsARM64 )
303
305
} else {
304
306
None
305
307
}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ impl PreReqChecker {
39
39
#[ cfg( not( target_os = "linux" ) ) ]
40
40
pub async fn verify ( & self ) -> Result < Platform , AnyError > {
41
41
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 ( )
43
43
} )
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments