fix: Remove support for multiple urls in oneshot command

This commit is contained in:
Cristian
2020-07-31 09:05:40 -05:00
parent 3afb2401bc
commit 8bcb171e74
3 changed files with 14 additions and 13 deletions

View File

@@ -47,7 +47,7 @@ def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional
stdin_url = accept_stdin(stdin)
if (stdin_url and url) or (not stdin and not url):
stderr(
'[X] You must pass URLs/paths to add via stdin or CLI arguments.\n',
'[X] You must pass URL/path to add via stdin or CLI arguments.\n',
color='red',
)
raise SystemExit(2)
@@ -59,4 +59,4 @@ def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional
if __name__ == '__main__':
main(args=sys.argv[1:], stdin=sys.stdin)
main(args=sys.argv[1:], stdin=sys.stdin)