lib/coderunner/system_modules/stampede.rb in coderunner-0.13.15 vs lib/coderunner/system_modules/stampede.rb in coderunner-0.13.16

- old
+ new

@@ -15,7 +15,11 @@ return %[mpiexec -np #{@nprocs} #{executable_location}/#{executable_name} #{parameter_string} > #{output_file} 2> #{error_file}] else "ibrun #{executable_location}/#{executable_name} #{parameter_string}" end end + def batch_script + raise "Please specify the queue to submit to using the -Q (or Q:) flag" unless @queue + super + end end end