mirror of
https://github.com/zadam/trilium.git
synced 2024-11-10 17:13:45 +08:00
24 lines
No EOL
687 B
Bash
Executable file
24 lines
No EOL
687 B
Bash
Executable file
#!/bin/bash
|
|
|
|
./set-build.sh
|
|
|
|
echo "Deleting dist"
|
|
|
|
rm -r dist/*
|
|
|
|
cp -r ../trilium-node-binaries/sqlite/* node_modules/sqlite3/lib/binding/
|
|
|
|
cp -r ../trilium-node-binaries/scrypt/* node_modules/scrypt/bin/
|
|
|
|
./node_modules/.bin/electron-rebuild
|
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=linux,win32 --overwrite
|
|
|
|
# can't copy this before the packaging because the same file name is used for both linux and windows build
|
|
cp ../trilium-node-binaries/scrypt.node ./dist/trilium-win32-x64/resources/app/node_modules/scrypt/build/Release/
|
|
|
|
echo "Packaging windows distribution..."
|
|
|
|
# possibly use zip: zip -r myfiles.zip mydir
|
|
|
|
tar cfJ dist/win.tar.xz dist/trilium-win32-x64 |