Skip to content

Commit

Permalink
chore: fix compilation error after containers#3070
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
  • Loading branch information
benoitf committed Jul 5, 2023
1 parent 7176fb0 commit e6ce1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/podman/src/extension.ts
Expand Up @@ -763,7 +763,7 @@ export async function activate(extensionContext: extensionApi.ExtensionContext):

// no podman for now, skip
if (isMac()) {
if (!fs.existsSync(podmanMachineSocketsDirectoryMac)) {
if (!fs.existsSync(podmanMachineSocketsDirectory)) {
return;
}
monitorMachines(provider).catch((error: unknown) => {
Expand Down

0 comments on commit e6ce1d0

Please sign in to comment.