Skip to content

Commit

Permalink
still use shell=True
Browse files Browse the repository at this point in the history
  • Loading branch information
derekk-nm committed Sep 25, 2024
1 parent f7c2176 commit ce42b09
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -49,5 +49,6 @@
testmo_command + testmo_args,
capture_output=True,
check=True,
cwd=pathlib.Path.cwd()
cwd=pathlib.Path.cwd(),
shell=True
)

0 comments on commit ce42b09

Please sign in to comment.