17 lines
		
	
	
		
			287 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			287 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
 | |
| 
 | |
| if machine fast5; then
 | |
|     setprofiles prod
 | |
| elif machine fast4; then
 | |
|     setprofiles test
 | |
| else
 | |
|     setprofiles devel test prod
 | |
| fi
 | |
| 
 | |
| if run; then
 | |
|     echo "PROFILE=$PROFILE"
 | |
| fi
 | |
| 
 | |
| # pas de build automatique
 | |
| AUTOBUILD=
 |