Index: trunk/tools/chip_outputs.pl
===================================================================
--- trunk/tools/chip_outputs.pl	(revision 21427)
+++ trunk/tools/chip_outputs.pl	(revision 24624)
@@ -82,7 +82,15 @@
 
     my $neb = "$path$ext"; # Nebulous file
-    my $source = `neb-locate --path $neb` or die "Unable to locate $neb\n"; # Actual file
+    my $source = `neb-locate --path $neb`;
+    if (!$source) { 
+	print "Unable to locate $neb\n"; # Actual file
+	return;
+    }
     chomp $source;
     my ($target) = $source =~ m|^.*:(.*)|; # Target name
-    !system "cp $source $target" or die "Unable to copy $source\n";
+    my $status = system "cp $source $target";
+    if ($status) {
+	print "Unable to copy $source\n";
+	return;
+    }
 }
