Skip to content

Commit

Permalink
fixed: containers not being deleted correctly (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
tequdev authored May 28, 2024
1 parent c32d67c commit 700be35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xrpld_netgen/utils/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ def remove_containers(cmd: str) -> None:
result = subprocess.run(
args,
check=True,
stdout=subprocess.STDOUT,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
if result.returncode == 0:
print(f"{bcolors.GREEN}Docker Ready{bcolors.END}")
Expand Down

0 comments on commit 700be35

Please sign in to comment.