mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix an issue where SSH workflows would execute immediately
Summary: rPe397103bf broke this since one of the implementations was `return false;`, not `return true;`. Auditors: chad
This commit is contained in:
parent
f5fb3f05dc
commit
9b8c75488b
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@ abstract class PhabricatorSSHWorkflow extends PhabricatorManagementWorkflow {
|
|||
private $iochannel;
|
||||
private $errorChannel;
|
||||
|
||||
public function isExecutable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public function setErrorChannel(PhutilChannel $error_channel) {
|
||||
$this->errorChannel = $error_channel;
|
||||
return $this;
|
||||
|
|
Loading…
Reference in a new issue