Skip to content

Commit

Permalink
CLI: Add newline to end of password output for pipes reading lines
Browse files Browse the repository at this point in the history
  • Loading branch information
uniflare committed Jun 14, 2023
1 parent 451fd60 commit 67df9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/dashlane-cli/Commands/Password.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace Dashlane
if (!password.empty())
if (output == "password")
{
std::cout << password;
std::cout << password << std::endl;
}
else
{
Expand Down

0 comments on commit 67df9f3

Please sign in to comment.