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.
1 parent c830cf8 commit 3b5a29dCopy full SHA for 3b5a29d
1 file changed
scripts/build.sh
@@ -29,7 +29,12 @@ build() {
29
cp $BWT_BIN_DIST/bwt-$version-electrum_only-$platform/* $dest
30
cp src/*.py $dest
31
cp LICENSE README.md $dest
32
- pack $name
+
33
+ # needs to be inside a directory with a name that matches the plugin module name for electrum to load it,
34
+ # create a temporary link to get tar/zip to pack it properly. (can also be done for tar.gz with --transform)
35
+ ln -s $name dist/bwt
36
+ pack $name bwt
37
+ rm dist/bwt
38
}
39
40
# pack tar.gz (for linux/mac/arm) or zip (for windows)
0 commit comments