21 lines
576 B
Diff
21 lines
576 B
Diff
|
directories in .hak/hakModules are already symlinked inside node_modules,
|
||
|
and as such are already being copied by default. this makes tasje fail with:
|
||
|
```
|
||
|
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value:
|
||
|
FileAlreadyWritten("/node_modules/keytar/package.json")', src/main.rs:200:18
|
||
|
```
|
||
|
|
||
|
--- ./electron-builder.ts.orig
|
||
|
+++ ./electron-builder.ts
|
||
|
@@ -74,10 +74,6 @@
|
||
|
},
|
||
|
files: [
|
||
|
"package.json",
|
||
|
- {
|
||
|
- from: ".hak/hakModules",
|
||
|
- to: "node_modules",
|
||
|
- },
|
||
|
"lib/**",
|
||
|
],
|
||
|
extraResources: [
|