Skip to content

Commit

Permalink
Fix f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirch committed Aug 13, 2023
1 parent 42268bc commit 9341295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
commands = ["mkdir -p infrastructure/data/lambdas"]

for function in functions:
commands.append("zip {function}.zip target/lambda/{function}/bootstrap")
commands.append("cp {function}.zip infrastructure/data/lambdas/{function}.zip")
commands.append(f"zip {function}.zip target/lambda/{function}/bootstrap")
commands.append(f"cp {function}.zip infrastructure/data/lambdas/{function}.zip")
os.system("; ".join(commands))

0 comments on commit 9341295

Please sign in to comment.