From c55494ef41ec2002a7326caa90704f03eb0dfd7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= Date: Sat, 31 Jul 2021 18:04:01 +0200 Subject: [PATCH] Remove uclibc files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas K. Hüttel --- scripts/cp-uclibc.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 scripts/cp-uclibc.sh diff --git a/scripts/cp-uclibc.sh b/scripts/cp-uclibc.sh deleted file mode 100755 index 0bfd24a7..00000000 --- a/scripts/cp-uclibc.sh +++ /dev/null @@ -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