Skip to content

Commit

Permalink
updated help, pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Nov 9, 2023
1 parent 21aed02 commit c7a5d30
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cloudcheck/cloudcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
async def _main():
ips = sys.argv[1:]
if not ips:
print("usage: cloudcheck 1.2.3.4 [update | forceupdate | [ips...]]")
print("usage: cloudcheck 1.2.3.4 [update | forceupdate | [ips...] | [domains...]]")
elif len(ips) == 1 and ips[0].lower() == "update":
await cloud_providers.update()
return
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ authors = ["TheTechromancer"]
license = "GPL-3.0"
readme = "README.md"
include = ["cloud_providers.json"]
repository = "https://github.com/blacklanternsecurity/cloudcheck"
homepage = "https://github.com/blacklanternsecurity/cloudcheck"

[tool.poetry.urls]
"Discord" = "https://discord.com/invite/PZqkgxu5SA"
"PyPi" = "https://pypi.org/project/cloudcheck/"

[tool.poetry.scripts]
cloudcheck = 'cloudcheck.cloudcheck:main'
Expand Down

0 comments on commit c7a5d30

Please sign in to comment.