mirror of https://github.com/cutefishos/appmotor
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			348 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			10 lines
		
	
	
		
			348 B
		
	
	
	
		
			Bash
		
	
#!/bin/sh
 | 
						|
if test -n "$1"
 | 
						|
then
 | 
						|
    git archive --format tar --remote=$1 --output=meegotouch-applauncherd-0.15.10.tar --prefix meegotouch-applauncherd-0.15.10/ released/0.15.10
 | 
						|
    bzip2 meegotouch-applauncherd-0.15.10.tar
 | 
						|
else
 | 
						|
    echo "Usage: create-tarball.sh <repo>"
 | 
						|
    echo "       where <repo> is suitable for git archive --remote=<repo>"
 | 
						|
fi
 |