Remove uclibc files

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2021-07-31 18:04:01 +02:00
parent 5e6a94495a
commit c55494ef41
No known key found for this signature in database
GPG key ID: 4C49F79E54D0A206

View file

@ -1,19 +0,0 @@
#!/bin/bash
CATDIR="/release/buildroot/alt-dev/builds/uclibc"
SERVER="amd64@dipper:~/uclibc"
LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l)
COMMAND="rsync"
for f in $LIST; do
$COMMAND $(realpath $f) $SERVER
$COMMAND $(realpath $f).CONTENTS.gz $SERVER
$COMMAND $(realpath $f).DIGESTS $SERVER
done
SERVER="x86@dipper:~/uclibc"
LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l)
for f in $LIST; do
$COMMAND $(realpath $f) $SERVER
$COMMAND $(realpath $f).CONTENTS.gz $SERVER
$COMMAND $(realpath $f).DIGESTS $SERVER
done