Community gatherings on Freenode at #tinycorelinux (webchat)
--- tce-fetch.sh-old 2012-12-26 18:45:17.000000000 +0000+++ tce-fetch.sh 2013-10-20 05:57:28.000000000 +0000@@ -6,8 +6,10 @@ getMirror+KERNELVER=$(uname -r) if [ "$1" == "-O" ]; then shift- wget -cq -O- "$MIRROR"/"$1"+ wget -cq -O- "$MIRROR"/"${1//-KERNEL.tcz/-${KERNELVER}.tcz}" else- [ -f "$1" ] && rm -f "$1"- wget -cq "$MIRROR"/"$1"+ F="${1//-KERNEL.tcz/-${KERNELVER}.tcz}"+ [ -f "$F" ] && rm -f "$F"+ wget -cq "$MIRROR"/"$F" fi