From 62b303b34d69f9cf1f18e9351a00317a3331ee40 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Thu, 9 Oct 2014 14:43:11 +0000 Subject: [PATCH] sort images by time, oldest first --- test/widgets/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 9e560c2..8a0dbd0 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -34,7 +34,7 @@ screenshots: make index index: - cd ${IMAGES}; ls *.png | perl -ne 'chomp; print qq{

$$_



\n}' > index.html + cd ${IMAGES}; ls -tr *.png | perl -ne 'chomp; print qq{

$$_



\n}' > index.html help: @echo "make [ all | clean | distclean ]" -- 1.7.10.4