From dfec8a55ef0eb9d1935c766eb7296f325e4b0ad3 Mon Sep 17 00:00:00 2001 From: Stefano Belforte Date: Wed, 8 Dec 2021 12:05:59 +0100 Subject: [PATCH] improve message to users. Fix #5126 (#5130) --- src/python/CRABClient/Commands/preparelocal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/CRABClient/Commands/preparelocal.py b/src/python/CRABClient/Commands/preparelocal.py index 83572aa3..7894db25 100644 --- a/src/python/CRABClient/Commands/preparelocal.py +++ b/src/python/CRABClient/Commands/preparelocal.py @@ -46,7 +46,7 @@ def __call__(self): else: self.logger.info("Copying an preparing files for local execution in %s" % self.options.destdir) self.prepareDir(inputArgs, self.options.destdir) - self.logger.info("Use 'sh run_job.sh NUMJOB' to execute the job") + self.logger.info("go to that directory IN A CLEAN SHELL and use 'sh run_job.sh NUMJOB' to execute the job") finally: os.chdir(cwd) shutil.rmtree(tmpDir)