diff --git a/src/main/gpg-verification.js b/src/main/gpg-verification.js index 04f066f..8092627 100644 --- a/src/main/gpg-verification.js +++ b/src/main/gpg-verification.js @@ -111,7 +111,7 @@ export function convertToUnixPath(windowsPath) { } // Convert backslashes to forward slashes - let unixPath = windowsPath.replaceAll('\\', "/"); + let unixPath = windowsPath.replaceAll("\\", "/"); // Convert drive letter (e.g., C: -> /c) unixPath = unixPath.replace(/^([A-Za-z]):/, (match, drive) => {