Skip to content

Commit 21a0ef0

Browse files
committed
fix
1 parent 145dc5c commit 21a0ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom-domain/dstack-ingress/scripts/certman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _build_certbot_command(self, action: str, domain: str, email: str) -> List[s
116116

117117
if action == "certonly":
118118
base_cmd.extend(
119-
["--email", email, "--agree-tos", "--no-eff-email", "-d", domain]
119+
["--agree-tos", "--no-eff-email", "--email", email, "-d", domain]
120120
)
121121

122122
return base_cmd

0 commit comments

Comments
 (0)