Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
QueueMin committed May 23, 2024
1 parent aafdb02 commit 1827a35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sskai_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,14 @@ def create_setup():
# Container build
container_create_command = f"./container_build.sh {ecr_uri} {region} {awscli_profile}"
print("Building and Deploying in progress.")
print("It takes about 15 minutes.")
subprocess.run(container_create_command, check=True, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print("Complete.")
break
elif build_type == "delete":
container_delete_command = f"./delete_container.sh {ecr_uri} {region} {awscli_profile}"
print("Deleting in progress")
print("Deleting in progress.")
print("It takes about 5 minutes.")
subprocess.run(container_delete_command, check=True, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print("Complete.")
break
Expand Down

0 comments on commit 1827a35

Please sign in to comment.