Skip to content

Commit

Permalink
Typofix (missing bracket)
Browse files Browse the repository at this point in the history
  • Loading branch information
gugglegum committed Jan 17, 2019
1 parent 925687f commit 673fbe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Utils/Exec.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static function exec(string $command)

$retCode = proc_close($process);
if ($retCode !== 0) {
throw new \Exception("External command ({$command}) returned bad result code ({$retCode}");
throw new \Exception("External command ({$command}) returned bad result code ({$retCode})");
}
} else {
throw new \Exception("Failed to execute command: {$command}");
Expand Down

0 comments on commit 673fbe8

Please sign in to comment.