Skip to content

Commit

Permalink
Add trailing slash for interactive path
Browse files Browse the repository at this point in the history
  • Loading branch information
valters-tomsons committed May 1, 2023
1 parent 1149965 commit dce59b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DayZLauncher.UnixPatcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Common.WriteLine("");
Common.WriteLine("Enter full DayZ installation path and press ENTER");
Console.Write("> ");
userInput = Console.ReadLine();
userInput = Console.ReadLine()?.Trim() + '/';
}
else
{
Expand Down

0 comments on commit dce59b2

Please sign in to comment.