17 lines
		
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| export DEBCHANGE_VENDOR=ubuntu
 | |
| export DISTRIBUTION=precise
 | |
| 
 | |
| export DEBFULLNAME='Daniel Pavel'
 | |
| export DEBEMAIL='daniel.pavel+launchpad@gmail.com'
 | |
| export DEBSIGN_KEYID=07D8904B
 | |
| 
 | |
| Z="$(readlink -f "$(dirname "$0")")"
 | |
| "$Z"/build_deb.sh --rebuild "$@"
 | |
| 
 | |
| /usr/bin/dput --config="$Z/dput.cf" solaar-snapshots-ppa \
 | |
| 	"$Z/../dist/ubuntu"/solaar_*_source.changes
 |