Skip to content

Commit

Permalink
Fixing errror message (#424)
Browse files Browse the repository at this point in the history
fixing error message when HAL9_TOKEN is missing
  • Loading branch information
diegoarceof authored Oct 11, 2024
1 parent 0831421 commit ed9c7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hal9/targets/hal9.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def deploy(path :str, url :str, name :str, typename :str, data :str, access :str
if 'HAL9_TOKEN' in os.environ:
hal9_token = os.environ['HAL9_TOKEN']
else:
exit(f'HAL9_TOKEN environment variable missing, see https://hal9.com/deploy')
exit(f'HAL9_TOKEN environment variable missing, see https://hal9.com/devs')
# hal9_token = browser_login()

request_deploy(path, url, name, typename, data, access, main, title, description)
Expand Down

0 comments on commit ed9c7f4

Please sign in to comment.