From a6f674a77ba0d967c16f9fb118fbae9faa5b1e2a Mon Sep 17 00:00:00 2001 From: DUC ANH HOANG Date: Wed, 7 Feb 2024 14:50:38 +0100 Subject: [PATCH] [EDF] Taking SALOME launcher options into account through environment variable SALOME_OPTIONS --- bin/salomeContext.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/salomeContext.py b/bin/salomeContext.py index cdb42c77b..4a40e68de 100755 --- a/bin/salomeContext.py +++ b/bin/salomeContext.py @@ -288,6 +288,11 @@ class SalomeContext: command, options = self.__parseArguments(args) sys.argv = options + # append option from env var SALOME_OPTIONS if it's available + if os.getenv("SALOME_OPTIONS"): + option_from_env = os.getenv("SALOME_OPTIONS").split(' ') + sys.argv += option_from_env + if command is None: if args and args[0] in ["-h","--help","help"]: usage() -- 2.39.2