fix: typo in subprocess invocation

This commit is contained in:
Michal Čihař 2025-07-11 09:24:41 +02:00
parent f631afe774
commit b87618e8cb

View file

@ -66,4 +66,4 @@ print("Removing server...")
for server in servers: for server in servers:
subprocess.run(["hcloud", "server", "delete", str(server["id"])], check=True) subprocess.run(["hcloud", "server", "delete", str(server["id"])], check=True)
print("Disabling sentry cron monitors...") print("Disabling sentry cron monitors...")
subprocess.sun(["./disable-sentry-monitors", public_name]) subprocess.run(["./disable-sentry-monitors", public_name])