1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Minor, MySQL requires -pxxx, not -p xxx for passwords.

This commit is contained in:
epriestley 2012-08-17 08:17:14 -07:00
parent 3775e14478
commit 2628c91454

View file

@ -51,7 +51,7 @@ final class PhabricatorStorageManagementDumpWorkflow
if ($password) {
$password = $password->openEnvelope();
if (strlen($password)) {
$flag_password = csprintf('-p %s', $password);
$flag_password = csprintf('-p%s', $password);
}
}