mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			274 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			274 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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
 |