Skip to content

Commit

Permalink
fix the damn windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Jul 31, 2024
1 parent 0555198 commit 8c0137e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/apps/screenpipe-app-tauri/scripts/pre_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if (platform == 'windows') {

let copied = false;
for (const screenpipeSrc of potentialPaths) {
const screenpipeDest = path.join(cwd, 'screenpipe-x86_64-pc-windows-gnu.exe');
const screenpipeDest = path.join(cwd, 'screenpipe-x86_64-pc-windows-msvc.exe');
try {
await fs.copyFile(screenpipeSrc, screenpipeDest);
console.log(`Screenpipe binary copied successfully from ${screenpipeSrc}`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
],
"resources": {
"ffmpeg\\bin\\x64\\*": "./",
"ffmpeg\\lib\\*": "./",
"screenpipe-x86_64-pc-windows-gnu.exe": "./"
"ffmpeg\\lib\\*": "./"
}
}
}

0 comments on commit 8c0137e

Please sign in to comment.