24 lines
		
	
	
		
			346 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			346 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| set -x
 | |
| cd ../..
 | |
| PR=`pwd`
 | |
| cd $PR/make
 | |
| MAJ_SSS_NO=`cat majver.txt`
 | |
| MIN_SSS_NO=`cat minver.txt`
 | |
| REV_SSS_NO=`cat revver.txt`
 | |
| 
 | |
| export BLD_NO=$MAJ_SSS_NO.$MIN_SSS_NO.$REV_SSS_NO
 | |
| 
 | |
| cd $PR/products/install/lux/opt/novell
 | |
| 
 | |
| (tar cvjf CASA-$BLD_NO.tar.bz2 *)
 | |
| 
 | |
| RCODE=$?
 | |
| if(test $RCODE != 0)
 | |
| then
 | |
| exit $RCODE
 | |
| else
 | |
| exit 0
 | |
| fi
 | |
| 
 |