Skip to content

Commit

Permalink
use directory, not DLL, on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
antonycourtney committed Dec 20, 2022
1 parent d781cc0 commit 2366a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tad-app/tools/afterPack.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function afterPack(context) {
const { appOutDir } = context;
const duckDbTargetDir = path.join(
appOutDir,
"resources/app.asar.unpacked/node_modules/duckdb/lib/binding/duckdb.node"
"resources/app.asar.unpacked/node_modules/duckdb/lib/binding"
);
const sslBinDir = path.join(WIN_SSL_DIR, "bin");
const results = await copy(sslBinDir, duckDbTargetDir);
Expand Down

0 comments on commit 2366a37

Please sign in to comment.