mirror of
				https://github.com/Telecominfraproject/wlan-testing.git
				synced 2025-11-03 20:38:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Copy wlan-lanforge-scripts into place
 | 
						|
# Assumes wlan-lanforge-scripts is already up to date.
 | 
						|
# Other setup may be added here as well.
 | 
						|
 | 
						|
if [ -d ../wlan-lanforge-scripts ]
 | 
						|
then
 | 
						|
    rm -fr lanforge/lanforge-scripts
 | 
						|
 | 
						|
    cp -a ../wlan-lanforge-scripts lanforge/lanforge-scripts
 | 
						|
fi
 | 
						|
 |