Changeset 35833 for trunk/ippScripts/scripts/ipp_apply_burntool_single.pl
- Timestamp:
- Jul 17, 2013, 2:28:15 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/ipp_apply_burntool_single.pl
r35829 r35833 146 146 } 147 147 if (($addable == 1)&&($#continue_exp_ids < $continue)) { 148 $this_exp_id = $entry->{exp_id} ;149 $this_uri = $entry->{uri} ;150 $this_state = $entry->{imfile_state} ;148 $this_exp_id = $entry->{exp_id} ? $entry->{exp_id} : 0; 149 $this_uri = $entry->{uri} ? $entry->{uri} : 'NULL'; 150 $this_state = $entry->{imfile_state} ? $entry->{imfile_state} : 'NULL'; 151 151 print ">> $this_exp_id $this_uri $this_state\n"; 152 152 if ($this_state eq 'pending_burntool') { … … 177 177 $outTable =~ s/fits$/burn.tbl/; 178 178 my $outTableReal = $ipprc->file_resolve($outTable, 1); 179 if (!$outTableReal) { 180 &my_die("failed to resolve output file: $outTable",$exp_id,$class_id); 181 } 179 182 180 183 my $previousTable; … … 184 187 $previousTable =~ s/fits$/burn.tbl/; 185 188 $previousTableReal = $ipprc->file_resolve($previousTable, 0); 189 if (!$previousTableReal) { 190 &my_die("failed to resolve input file: $previousTable",$exp_id,$class_id); 191 } 186 192 } 187 193
Note:
See TracChangeset
for help on using the changeset viewer.
