website rev 680

get-latest.sh: display pkgs date in bold
author Christophe Lincoln <pankso@slitaz.org>
date Sun Nov 07 16:11:42 2010 +0100 (2010-11-07)
parents 031ff4450369
children 656f92317719
files scripts/get-latest.sh
line diff
     1.1 --- a/scripts/get-latest.sh	Sun Nov 07 15:06:28 2010 +0100
     1.2 +++ b/scripts/get-latest.sh	Sun Nov 07 16:11:42 2010 +0100
     1.3 @@ -28,8 +28,8 @@
     1.4  cd $PKGS && ls -1t *.tazpkg | head -5 | \
     1.5  while read file
     1.6  do
     1.7 -	echo -n '	<li>'$(stat -c '%y' $PKGS/$file | \
     1.8 -	cut -d ' ' -f 1); echo " - $file</li>"
     1.9 +	echo -n '	<li><strong>'$(stat -c '%y' $PKGS/$file | \
    1.10 +	cut -d ' ' -f 1); echo "</strong> - $file</li>"
    1.11  done >> $OUTPUT
    1.12  echo "</ul>" >> $OUTPUT
    1.13  echo "Done"