mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			457 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			457 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|  #!/bin/sh
 | |
| 
 | |
|            shift
 | |
|            REPO=`bk gethost`:`pwd`
 | |
|            TO=dev@mysql.com
 | |
|            if [ -f BitKeeper/etc/pushed -a "$BK_OUTGOING" = OK ]
 | |
|            then (
 | |
|                 echo ${USER}@"$@"
 | |
|                 echo ""
 | |
|                 bk changes - < BitKeeper/etc/pushed
 | |
|                 ) | mail -s "Outgoing from $REPO" $TO
 | |
|            else
 | |
|                 echo ${USER}@"$@"| mail -s "Outgoing from $REPO = $BK_OUTGOING" $TO
 | |
|            fi    
 |