We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b24bdc0 + 68718a5 commit c47aee0Copy full SHA for c47aee0
client/src/shared_lib_core.ts
@@ -32,6 +32,21 @@ const find1PasswordLibPath = (): string => {
32
];
33
break;
34
35
+ case "win32": // Windows
36
+ searchPaths = [
37
+ path.join(
38
+ os.homedir(),
39
+ "/AppData/Local/1Password/op_sdk_ipc_client.dll",
40
+ ),
41
+ "C:/Program Files/1Password/app/8/op_sdk_ipc_client.dll",
42
+ "C:/Program Files (x86)/1Password/app/8/op_sdk_ipc_client.dll",
43
44
45
+ "/AppData/Local/1Password/app/8/op_sdk_ipc_client.dll",
46
47
+ ];
48
+ break;
49
+
50
default:
51
throw new Error(`Unsupported platform: ${platform}`);
52
}
0 commit comments