mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-11-04 05:41:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			128 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			128 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
if [ -z $1 ]; then
 | 
						|
	echo usage: $0 VERSION
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
git archive --format=tar --prefix=tt-rss-$1/ $1 | gzip >tt-rss-$1.tar.gz
 |