Skip to content

Commit 1e0485e

Browse files
authored
Fix syntax error in certbot patch (#510)
1 parent 328daf6 commit 1e0485e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxy-manager/patches/0004-patch-certbot-venv-plugin-handling.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ index 403c14e..7451271 100644
3030

3131
if (plugins.length) {
3232
- const install_cmd = '. /opt/certbot/bin/activate && pip install --no-cache-dir ' + plugins.join(' ') + ' && deactivate';
33-
+ const install_cmd = 'pip install ' + plugins.join(' ')';
33+
+ const install_cmd = 'pip install ' + plugins.join(' ');
3434
promises.push(utils.exec(install_cmd));
3535
}
3636

0 commit comments

Comments
 (0)