From b708653c2663e9fa1d9701e9d784380c8ab77064 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 4 Oct 2016 19:37:48 +0300 Subject: [PATCH] Allow multiple emails for PIO Remote share --- platformio/commands/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/remote.py b/platformio/commands/remote.py index 07b0e408..6f7cfde7 100644 --- a/platformio/commands/remote.py +++ b/platformio/commands/remote.py @@ -42,7 +42,7 @@ def remote_agent(): @remote_agent.command("start", short_help="Start agent") @click.option("-n", "--name") -@click.option("-s", "--share", metavar="E-MAIL") +@click.option("-s", "--share", multiple=True, metavar="E-MAIL") def remote_agent_start(**kwargs): pioplus_call(sys.argv[1:])