Skip to content

Commit

Permalink
check command first before join
Browse files Browse the repository at this point in the history
  • Loading branch information
Norraphat committed Aug 2, 2021
1 parent 8615a3f commit 072fcb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/PyReleaseValidation/python/MatrixReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, opt):

self.wm=opt.wmcontrol
self.revertDqmio=opt.revertDqmio
self.addCommand=' '.join(opt.command)
self.addCommand=opt.command
self.apply=opt.apply
self.commandLineWf=opt.workflow
self.overWrite=opt.overWrite
Expand Down
1 change: 1 addition & 0 deletions Configuration/PyReleaseValidation/scripts/runTheMatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ def runSelected(opt):
action='store')

opt,args = parser.parse_args()
if opt.command: opt.command = ' '.join(opt.command)
os.environ["CMSSW_DAS_QUERY_SITES"]=opt.dasSites
if opt.IBEos:
try:from commands import getstatusoutput as run_cmd
Expand Down

0 comments on commit 072fcb3

Please sign in to comment.