Skip to content

Commit

Permalink
Change parameter to --interactive-root
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Sep 27, 2024
1 parent a8d9a0b commit 5330f29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k4FWCore/scripts/k4run
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def main():
)
parser.add_argument("--gdb", action="store_true", help="Attach gdb debugger")
parser.add_argument(
"--disableROOTBatchMode",
"--interactive-root",
action="store_true",
help="Do not enforce ROOT batch mode",
default=False,
Expand Down Expand Up @@ -235,7 +235,7 @@ def main():

c = gaudimain()
if not opts.dry_run:
if not opts.disableROOTBatchMode:
if not opts.interactive_root:
from ROOT import gROOT
gROOT.SetBatch(True)

Expand Down

0 comments on commit 5330f29

Please sign in to comment.