Skip to content

Commit

Permalink
Fix rel path for bin.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Jul 17, 2024
1 parent 8d5f05c commit fe76d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyngrok/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
else:
_config_rel_path = os.path.join(".config", "ngrok")
DEFAULT_NGROK_CONFIG_PATH = os.path.join(os.path.expanduser("~"), _config_rel_path, "ngrok.yml")
DEFAULT_NGROK_PATH = os.path.join(DEFAULT_NGROK_CONFIG_PATH, get_ngrok_bin())
DEFAULT_NGROK_PATH = os.path.join(_config_rel_path, get_ngrok_bin())


class PyngrokConfig:
Expand Down

0 comments on commit fe76d6d

Please sign in to comment.