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/list-package-arch | |
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/list-package-arch')
-rwxr-xr-x | scripts/list-package-arch | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/list-package-arch b/scripts/list-package-arch deleted file mode 100755 index 10ac02d3..00000000 --- a/scripts/list-package-arch +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -# Execute this script from the vyos-build top directory -# Will generate a list of architectures in each repository -for a in $(echo vyos-build; ./scripts/build-packages -l | egrep -e '^ \* ' | sed 's/^ \* //'); do - n=$(curl https://raw.githubusercontent.com/vyos/${a}/current/debian/control 2>/dev/null | grep "Architecture" | tr '\n' ',') - printf "%-24s %s \n" "${a}" "${n}" -done |