Skip to content
Snippets Groups Projects

Return non zero code on failure

Merged Bryan Brancotte requested to merge fail-ci-on-test-failure into main
2 files
+ 23
15
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 9
2
@@ -91,13 +91,20 @@ class Nextflow_File(Nextflow_Building_Blocks):
@@ -91,13 +91,20 @@ class Nextflow_File(Nextflow_Building_Blocks):
if(self.first_file):
if(self.first_file):
return self.output_dir
return self.output_dir
else:
else:
return self.origin.get_output_dir()
if(self.origin==None):
 
return self.output_dir
 
else:
 
return self.origin.get_output_dir()
def get_display_info(self):
def get_display_info(self):
if (self.first_file):
if (self.first_file):
return self.display_info
return self.display_info
else:
else:
return self.origin.get_display_info()
if(self.origin==None):
 
return self.display_info
 
else:
 
return self.origin.get_display_info()
 
def set_name(self):
def set_name(self):
Loading