diff options
Diffstat (limited to 'bin/reprepro_foreign.sh')
-rwxr-xr-x | bin/reprepro_foreign.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/bin/reprepro_foreign.sh b/bin/reprepro_foreign.sh new file mode 100755 index 0000000..006c54b --- /dev/null +++ b/bin/reprepro_foreign.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +ARCHITECTURES="${@}" + +if [ -z "${ARCHITECTURES}" ] +then + ARCHITECTURES="arm64 armel armhf" +fi + +for ARCHITECTURE in ${ARCHITECTURES} +do + for DIRECTORY in */*_amd64 + do + DIRECTORY="$(echo ${DIRECTORY} | sed -e "s|amd64|${ARCHITECTURE}|")" + + if [ ! -e "${DIRECTORY}" ] + then + echo "${DIRECTORY}" + fi + done | grep -Ev '(current_|firefox|libreoffice|thunderbird)' +done |