Skip to content
Snippets Groups Projects
Commit 46b13498 authored by John Kenneth Anders's avatar John Kenneth Anders Committed by Atlas Nightlybuild
Browse files

Merge branch '21.0-look-for-patches-with-lstags' into '21.0'

Looking for patches using WorkDir_DIR instead of TestArea (ATLASJT-399)

See merge request atlas/athena!26078

(cherry picked from commit 1b47900188d5881d467ad756e9b069220d466e97)

8fb2f94d Looking for patches using WorkDir_DIR instead of TestArea (ATLASJT-399)
parent f8425846
No related branches found
No related tags found
No related merge requests found
......@@ -243,7 +243,7 @@ def asetupReport():
if eVar in os.environ:
setupMsg += '\t%s=%s\n' % (eVar, os.environ[eVar])
# Look for patches so that the job can be rerun
if 'TestArea' in os.environ and os.access(os.environ['TestArea'], os.R_OK):
if 'WorkDir_DIR' in os.environ and os.access(os.environ['WorkDir_DIR'], os.R_OK):
setupMsg += "\n\tPatch packages are:\n"
try:
cmd = ['lstags']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment