X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6db907e90cee931c98be2684ba5deed698b1ebb6..73e05bea1b521129d76e5a7e641bf25c5f2d3341:/tools/mkimgthumb diff --git a/tools/mkimgthumb b/tools/mkimgthumb index 32ae1a3..c672d3f 100755 --- a/tools/mkimgthumb +++ b/tools/mkimgthumb @@ -35,12 +35,13 @@ my $failcount = 0; for my $src (@ARGV) { my ($name, @cmds) = split /:(? or next; } s/\\(.)/$1/g for @cmds; - say $name; + print ':'; if (@cmds and $cmds[0] =~ /^\d/) { # crop shorthand from initial dimension argument @@ -54,14 +55,18 @@ for my $src (@ARGV) { my $image = Shiar_Sheet::ImagePrep->new($src); for (@ffs) { my ($ff, @ffcmds) = @{$_}; + print " $ff"; $image->convert("../$name.$ff", [@cmds, @ffcmds]); } 1; } or do { - warn "error creating image:\n"; + say ' FAILED'; warn ref $@ eq 'ARRAY' ? $@->[1] : $@ if $@; $failcount++; }; } +continue { + say ''; +} exit $failcount;