mirror of
				https://github.com/Telecominfraproject/OpenNetworkLinux.git
				synced 2025-10-31 02:08:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			301 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			301 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| ############################################################
 | |
| #
 | |
| # Every time a merge is performed we should invalidate
 | |
| # the module data.
 | |
| #
 | |
| ############################################################
 | |
| echo "Removing module data after merge..."
 | |
| rm -rf "$GIT_DIR/../make/modules/modules*"
 | |
| 
 | |
| 
 | |
| 
 | 
