From f1a84d8c991f73005bcb7da82b6d88f77f5ac96b Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 7 Jan 2023 07:37:07 +1000 Subject: [PATCH] tasks.py: host -> hosts --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index b0959e1..cc7ef16 100644 --- a/tasks.py +++ b/tasks.py @@ -178,7 +178,7 @@ def get_hosts(hosts: str) -> List[DeployHost]: @task def deploy(c, hosts=""): """ - Deploy to all servers. Use inv deploy --host build01 to deploy to a single server + Deploy to all servers. Use inv deploy --hosts build01 to deploy to a single server """ deploy_nixos(get_hosts(hosts)) @@ -186,7 +186,7 @@ def deploy(c, hosts=""): @task def build_local(c, hosts=""): """ - Build all servers. Use inv build-local --host build01 to build a single server + Build all servers. Use inv build-local --hosts build01 to build a single server """ g = DeployGroup(get_hosts(hosts))