mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
12 lines
274 B
Bash
12 lines
274 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
VERSION=`jq -r ".version" package.json`
|
||
|
|
||
|
cd dist
|
||
|
|
||
|
echo "Packaging windows electron distribution..."
|
||
|
7z a trilium-windows-${VERSION}.7z trilium-win32-x64
|
||
|
|
||
|
echo "Packaging linux electron distribution..."
|
||
|
7z a trilium-linux-${VERSION}.7z trilium-linux-x64
|