mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +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
|