Skip to content

Commit

Permalink
Fix mkdir command in build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirch committed Aug 13, 2023
1 parent 63cfb5c commit 3b9081c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

functions = [name for name in os.listdir("target/lambda/")]

commands = [f"mkdir infrastructure/data/lambdas/{function}; cp target/lambda/{function}/bootstrap infrastructure/data/lambdas/{function}" for function in functions]
commands = [f"mkdir -p infrastructure/data/lambdas/{function}; cp target/lambda/{function}/bootstrap infrastructure/data/lambdas/{function}" for function in functions]
os.system("; ".join(commands))

0 comments on commit 3b9081c

Please sign in to comment.