Skip to content

Commit

Permalink
Fix hanging the deployment process in some cases
Browse files Browse the repository at this point in the history
This bug has been reported by @satamazing in bacularis-web repository:

#8
  • Loading branch information
ganiuszka committed Nov 7, 2024
1 parent 6e66609 commit ed07d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Web/Modules/SSH.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private function prepareCommand($address, array $params, array $command, $ptype)

$remote_cmd = '';
if (count($command) > 0) {
$remote_cmd = implode(' ', $command);
$remote_cmd = 'LANG=C ' . implode(' ', $command);
}

$dest = $address;
Expand Down

0 comments on commit ed07d26

Please sign in to comment.