From 7668562ce12ac471c6f72ef94e9e7615ea3245d5 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 22 May 2022 20:24:34 +0100 Subject: [PATCH] usvg-processor: Print the command we run We're going to bury some extra option addition here, but it should be visibile. Ah well, the build log ever grows. Signed-off-by: Ian Jackson --- usvg-processor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usvg-processor b/usvg-processor index 44430e0c..58f3042a 100755 --- a/usvg-processor +++ b/usvg-processor @@ -28,5 +28,7 @@ add_lic(); flush STDOUT or die $!; my $cmd = "$usvg - -c"; my $cmd_m = "$cmd <$in >$out.tmp"; +print STDERR "+ $cmd_m\n"; + $!=0; $?=0; system qw(sh -ec), "exec $cmd" and die "exec usvg: $cmd_m: $? $!"; rename "$out.tmp", $out or die "'$cmd_m': $!"; -- 2.30.2