diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-03-20 17:50:51 +0000 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2024-03-20 17:50:51 +0000 |
commit | 5dcb6b771106df130b4884867dc28bd685b64e40 (patch) | |
tree | 205b0730456878a4ac88e724ecbaba02887b4941 /scripts/import-local-packages | |
parent | a690a02bdcda236be79bd84acffb6c1d05a5d4ba (diff) | |
download | vyos-build-5dcb6b771106df130b4884867dc28bd685b64e40.tar.gz vyos-build-5dcb6b771106df130b4884867dc28bd685b64e40.zip |
chore: T671: remove unused scripts and references to them
Diffstat (limited to 'scripts/import-local-packages')
-rwxr-xr-x | scripts/import-local-packages | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/import-local-packages b/scripts/import-local-packages deleted file mode 100755 index 70b4c365..00000000 --- a/scripts/import-local-packages +++ /dev/null @@ -1,13 +0,0 @@ -#!/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 |