diff options
Diffstat (limited to 'Meta/Lagom/Tools/ConfigureComponents/main.cpp')
-rw-r--r-- | Meta/Lagom/Tools/ConfigureComponents/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Tools/ConfigureComponents/main.cpp b/Meta/Lagom/Tools/ConfigureComponents/main.cpp index be1464a10f..052d2d1ec1 100644 --- a/Meta/Lagom/Tools/ConfigureComponents/main.cpp +++ b/Meta/Lagom/Tools/ConfigureComponents/main.cpp @@ -195,7 +195,7 @@ static Result<Vector<String>, int> run_whiptail(WhiptailMode mode, Vector<Whipta auto file = Core::File::construct(); file->open(read_fd, Core::OpenMode::ReadOnly, Core::File::ShouldCloseFileDescriptor::Yes); auto data = String::copy(file->read_all()); - return data.split('\n', false); + return data.split('\n'); } static bool run_system_command(String const& command, StringView command_name) |