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