mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Made it a separate script, if we ever need anything fancier than cp *.deb If not, we can move it to the makefile.
7 lines
112 B
Bash
Executable File
7 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOCAL_PKG_DIR=build/config/packages.chroot
|
|
|
|
mkdir -p $LOCAL_PKG_DIR
|
|
cp packages/*.deb $LOCAL_PKG_DIR
|