Index: trunk/ippScripts/scripts/ipp_serial_mops.pl
===================================================================
--- trunk/ippScripts/scripts/ipp_serial_mops.pl	(revision 24192)
+++ trunk/ippScripts/scripts/ipp_serial_mops.pl	(revision 24193)
@@ -15,4 +15,5 @@
 use PS::IPP::Metadata::List qw( parse_md_list );
 use PS::IPP::Config qw( caturi );
+use Carp qw( carp );
 
 # Look for programs we need
@@ -137,5 +138,5 @@
 
         my $input = $ipprc->filename($sources, $path_base);
-        die "Can't find $input\n" unless $ipprc->file_exists($input);
+        (carp "Can't find $input\n" and next) unless $ipprc->file_exists($input);
         $input = $ipprc->file_resolve($input);
 
@@ -147,5 +148,5 @@
             my $command = "$mops --input $input --extname SkyChip.psf --output $output";
             my $success = run( command => $command, verbose => $verbose );
-            die "Couldn't translate $input\n" unless $success;
+            (carp "Couldn't translate $input\n" and next) unless $success;
         }
 
