From fac7ba859ddf0067e42254177e77a5544ad9e260 Mon Sep 17 00:00:00 2001 From: Michael Krasnitski Date: Wed, 4 Jun 2025 11:54:39 -0400 Subject: Fix incorrect paths in EFI Resolver --- plugins/efi_resolver/src/Resolver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/efi_resolver/src/Resolver.cpp') diff --git a/plugins/efi_resolver/src/Resolver.cpp b/plugins/efi_resolver/src/Resolver.cpp index 36fa190b..5796b0e0 100644 --- a/plugins/efi_resolver/src/Resolver.cpp +++ b/plugins/efi_resolver/src/Resolver.cpp @@ -44,11 +44,11 @@ static string GetBundledEfiPath() { string path = GetBundledPluginDirectory(); #if defined(_WIN32) - return path + "..\\types\\efi.c"; + return path + "\\..\\types\\efi.c"; #elif defined(__APPLE__) return path + "/../../Resources/types/efi.c"; #else - return path + "../types/efi.c"; + return path + "/../types/efi.c"; #endif } -- cgit v1.3.1