The following commit has been merged in the master branch:
commit dd7bf1aa2d181a2bdd25be9eef6666089bba53d8
Author: Niels Thykier <[email protected]>
Date:   Wed Oct 24 16:05:50 2012 +0200

    reporting/html_reports: Add missing die and semi-colon
    
    Signed-off-by: Niels Thykier <[email protected]>

diff --git a/reporting/html_reports b/reporting/html_reports
index ebc403e..76adb3b 100755
--- a/reporting/html_reports
+++ b/reporting/html_reports
@@ -738,11 +738,11 @@ sub chdir_system {
     my $pid = fork // die "fork: $!";
     if ($pid) {
         waitpid ($pid, 0) == $pid or die "waitpid failed: $!\n";
-        return $?
+        return $?;
     }
 
     chdir $dir
-        or "chdir failed: $!";
+        or die "chdir failed: $!";
     exec @$cmd
         or die "exec failed: $!";
 }

-- 
Debian package checker


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to