mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
21 lines
No EOL
351 B
Bash
Executable file
21 lines
No EOL
351 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
rm -r node_modules
|
|
|
|
npm install
|
|
|
|
echo "Deleting existing builds"
|
|
|
|
rm -r dist/*
|
|
|
|
bin/build-win-x64.sh
|
|
|
|
bin/build-mac-x64.sh
|
|
|
|
# building X64 linux as the last so electron-rebuild will prepare X64 binaries for local development
|
|
bin/build-linux-x64.sh
|
|
|
|
# this needs to be run after linux build
|
|
bin/build-debian.sh
|
|
|
|
bin/build-server.sh |