mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 06:55:03 +00:00
Add newline after password in CLI
This commit is contained in:
parent
73d284e101
commit
1ca5b4b456
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ USAGE_TEXT;
|
||||||
public function userAdd(string $user, string $password = null): int {
|
public function userAdd(string $user, string $password = null): int {
|
||||||
$passwd = Arsse::$user->add($user, $password);
|
$passwd = Arsse::$user->add($user, $password);
|
||||||
if (is_null($password)) {
|
if (is_null($password)) {
|
||||||
echo $passwd;
|
echo $passwd.\PHP_EOL;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue