Skip to content

Commit

Permalink
don't use shell for cdk subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
spyoungtech committed Aug 24, 2024
1 parent 5e2f125 commit c96b2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion level4/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class {camel_name}Stack(ManifestStack):


def _init() -> None:
subprocess.run(['cdk', 'init', 'app', '--language', 'python'], check=True, shell=True)
subprocess.run(['cdk', 'init', 'app', '--language', 'python'], check=True)
_install_level4_requirements()


Expand Down

0 comments on commit c96b2e6

Please sign in to comment.