X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=scripts%2Fjenkins_job_env.py;fp=scripts%2Fjenkins_job_env.py;h=0607f38be4828928262fd13cd360771ae7ebb668;hb=19562378edc1209e3128431efd4aba56024b7d16;hp=82401dce2e89cf929b4178f7bbc97adee5a0b85a;hpb=1e65ccd9789590c93a8181ee4d2683e131cd0a20;p=lttng-ci.git diff --git a/scripts/jenkins_job_env.py b/scripts/jenkins_job_env.py index 82401dc..0607f38 100755 --- a/scripts/jenkins_job_env.py +++ b/scripts/jenkins_job_env.py @@ -34,7 +34,7 @@ def _get_argparser(): description="Fetch and create a stub environment from common job artifacts", ) # Commands: fetch (implies activate), activate, deactivate - subparsers = parser.add_subparsers(required=True, dest="command") + subparsers = parser.add_subparsers(dest="command") parser.add_argument( "-v", "--verbose", action="count", help="Increase the verbosity" ) @@ -111,7 +111,7 @@ def fetch(destination, server, job, build, job_configuration=None, download=True pathlib.Path("/etc/products.d/SLES.prod").exists() or pathlib.Path("/etc/redhat-release").exists() or pathlib.Path("/etc/yocto-release").exists() - ) and "64bit" in platform.architecture: + ) and "64bit" in platform.architecture(): lib_dir_arch = "{}64" so_re = re.compile("^.*\.so\.\d+\.\d+\.\d+$") @@ -140,7 +140,7 @@ def create_activate(destination): pathlib.Path("/etc/products.d/SLES.prod").exists() or pathlib.Path("/etc/redhat-release").exists() or pathlib.Path("/etc/yocto-release").exists() - ) and "64bit" in platform.architecture: + ) and "64bit" in platform.architecture(): lib_dir_arch = "{}64" env = {}