You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ "$(/usr/bin/pgrep oahd >/dev/null 2>&1;echo$?)"-eq 0 ];then
371
+
say_verbose "Changing user architecture from '$architecture' to 'x64' because .NET SDKs prior to version 6.0 do not support arm64."
372
+
echo"x64"
373
+
return 0;
374
+
else
375
+
say_err "Architecture \`$architecture\` is not supported for .NET SDK version \`$version\`. Please install Rosetta to allow emulation of the \`$architecture\` .NET SDK on this platform"
376
+
return 1
377
+
fi
378
+
fi
379
+
380
+
echo"$architecture"
381
+
return 0
382
+
}
383
+
384
+
# args:
385
+
# version or channel - $1
386
+
is_arm64_supported() {
387
+
#any channel or version that starts with the specified versions
0 commit comments