mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 08:09:10 +02:00
Jedi mind trick on coverage tool
This commit is contained in:
@@ -130,10 +130,7 @@ binary for temporary key/certificate generation.""".replace("\n", "")
|
||||
if self.conf("test-mode"):
|
||||
logger.debug("Test mode. Executing the manual command: %s", command)
|
||||
# sh shipped with OS X does't support echo -n
|
||||
if sys.platform == "darwin":
|
||||
executable = "/bin/bash"
|
||||
else:
|
||||
executable = None
|
||||
executable = "/bin/bash" if sys.platform == "darwin" else None
|
||||
try:
|
||||
self._httpd = subprocess.Popen(
|
||||
command,
|
||||
|
||||
Reference in New Issue
Block a user