From da8cad6a8b0d09f0c3b55ea21433959cbe58b0c2 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Mon, 23 Jan 2023 09:25:28 +0100 Subject: [PATCH] Override git_ssh_command to fix git clone command https://github.com/deployphp/deployer/issues/2908 --- res/deploy.tpl.php | 1 + 1 file changed, 1 insertion(+) diff --git a/res/deploy.tpl.php b/res/deploy.tpl.php index 56e6488..50694b2 100644 --- a/res/deploy.tpl.php +++ b/res/deploy.tpl.php @@ -27,6 +27,7 @@ function () { 'bin/wp', fn(): string => which( 'wp' ) ); +set( 'git_ssh_command', 'ssh' ); // Load options and hosts from inventory. import( 'deploy.yml' );