Skip to content

Commit

Permalink
test: fix softhsm path for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
microshine committed Jan 30, 2024
1 parent 0c13e7c commit e4a9f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as os from "node:os";
let lib = "/usr/local/lib/softhsm/libsofthsm2.so";
switch (os.platform()) {
case "darwin":
lib = "/usr/local/lib/softhsm/libsofthsm2.dylib";
lib = "/usr/local/lib/softhsm/libsofthsm2.so";
break;
case "linux":
lib = "/usr/lib/softhsm/libsofthsm2.so";
Expand Down

0 comments on commit e4a9f65

Please sign in to comment.