mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 09:46:25 +08:00
18 lines
No EOL
289 B
Bash
Executable file
18 lines
No EOL
289 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
|
|
|
|
bin/build-server.sh |