Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replace certbot-auto with certbot #1303

Merged
merged 13 commits into from
May 23, 2022
Merged
Prev Previous commit
Next Next commit
fix: return certbot path
  • Loading branch information
dj12djdjs authored May 8, 2022
commit ac443899c77cea32cd1754b19de0814714c11e25
2 changes: 1 addition & 1 deletion bench/config/lets_encrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def create_dir_if_missing(path):

def get_certbot_path():
try:
which("certbot", True)
return which("certbot", True)
except FileNotFoundError:
raise CommandFailedError("Certbot is not installed on your system. Please visit https://certbot.eff.org/instructions for installation instructions, then try again.")

Expand Down