mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			178 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			178 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
LOCAL_PKG_DIR=build/config/packages.chroot
 | 
						|
 | 
						|
mkdir -p $LOCAL_PKG_DIR
 | 
						|
 | 
						|
FILES=packages/*.deb
 | 
						|
for f in $FILES
 | 
						|
do
 | 
						|
  if [ -e "$f" ]; then
 | 
						|
    cp $f $LOCAL_PKG_DIR
 | 
						|
  fi
 | 
						|
done
 |