diff --git a/InnerDetector/InDetExample/InDetBeamSpotExample/python/LSFJobRunner.py b/InnerDetector/InDetExample/InDetBeamSpotExample/python/LSFJobRunner.py index 94c77f177eaefbcdc99b39bce9f4c3c11af677a5..aabdb4f3f640810844b06d2e5877b48c30af51a0 100644 --- a/InnerDetector/InDetExample/InDetBeamSpotExample/python/LSFJobRunner.py +++ b/InnerDetector/InDetExample/InDetBeamSpotExample/python/LSFJobRunner.py @@ -29,7 +29,7 @@ class LSFJobRunner(JobRunner): def submitJob(self,jobConfig): """Submit a JobRunner job as a LSF batch job.""" - batchCmd = 'bsub -q %(batchqueue)s -J %(jobname)s -o %(logfile)s %(scriptfile)s' % jobConfig + batchCmd = 'bsub -L /bin/bash -q %(batchqueue)s -J %(jobname)s -o %(logfile)s %(scriptfile)s' % jobConfig print batchCmd os.system(batchCmd) return None