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
@@ -255,7 +256,11 @@ export async function activate(extensionContext: extensionApi.ExtensionContext):
255
256
location: extensionApi.ProgressLocation.TASK_WIDGET,title: 'Activating Red Hat Subscription'
256
257
},async(progress)=>{
257
258
if(!isPodmanMachineRunning()){
258
-
awaitextensionApi.window.showInformationMessage('Podman machine is not running. Please start it and try again.');
259
+
if(isLinux()){
260
+
awaitextensionApi.window.showInformationMessage('Signing into a Red Hat account requires a running Podman machine, and is currently not supported on a Linux host. Please start a Podman machine and try again.');
261
+
}else{
262
+
awaitextensionApi.window.showInformationMessage('Signing into a Red Hat account requires a running Podman machine. Please start one and try again.');
0 commit comments