Changeset 25027 for branches/pap/tools/chip_outputs.pl
- Timestamp:
- Aug 7, 2009, 4:08:25 PM (17 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
tools/chip_outputs.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/tools/chip_outputs.pl
r21427 r25027 82 82 83 83 my $neb = "$path$ext"; # Nebulous file 84 my $source = `neb-locate --path $neb` or die "Unable to locate $neb\n"; # Actual file 84 my $source = `neb-locate --path $neb`; 85 if (!$source) { 86 print "Unable to locate $neb\n"; # Actual file 87 return; 88 } 85 89 chomp $source; 86 90 my ($target) = $source =~ m|^.*:(.*)|; # Target name 87 !system "cp $source $target" or die "Unable to copy $source\n"; 91 my $status = system "cp $source $target"; 92 if ($status) { 93 print "Unable to copy $source\n"; 94 return; 95 } 88 96 }
Note:
See TracChangeset
for help on using the changeset viewer.
