From ce42b09e6b706eb3fe153f0fb478625dddf44d07 Mon Sep 17 00:00:00 2001 From: derekk-nm Date: Wed, 25 Sep 2024 18:18:21 +0000 Subject: [PATCH] still use shell=True --- .../testmo-create-resources/compose_testmo_resources_file.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/actions/testmo-create-resources/compose_testmo_resources_file.py b/actions/testmo-create-resources/compose_testmo_resources_file.py index bb99ff5..a41da26 100755 --- a/actions/testmo-create-resources/compose_testmo_resources_file.py +++ b/actions/testmo-create-resources/compose_testmo_resources_file.py @@ -29,7 +29,7 @@ "--destination", help="filepath relative to REPO root to generate the file," " default 'testmo_resources.json'.", - default='testmo_resources.json', + default="testmo_resources.json", type=str) args = args_parser.parse_args() @@ -49,5 +49,6 @@ testmo_command + testmo_args, capture_output=True, check=True, - cwd=pathlib.Path.cwd() + cwd=pathlib.Path.cwd(), + shell=True )