mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
LibFileSystem+Everything: Remove resolve_executable_from_environment
This commit is contained in:
parent
26efdf9d4f
commit
f20d04726a
12 changed files with 12 additions and 23 deletions
|
@ -10,7 +10,6 @@
|
|||
#include <LibConfig/Client.h>
|
||||
#include <LibCore/System.h>
|
||||
#include <LibDesktop/Launcher.h>
|
||||
#include <LibFileSystem/FileSystem.h>
|
||||
#include <LibFileSystemAccessClient/Client.h>
|
||||
#include <LibGUI/ActionGroup.h>
|
||||
#include <LibGUI/Application.h>
|
||||
|
@ -38,7 +37,7 @@ static ErrorOr<Vector<EngineDetails>> available_engines()
|
|||
{
|
||||
Vector<EngineDetails> available_engines;
|
||||
for (auto& engine : s_all_engines) {
|
||||
auto path_or_error = FileSystem::resolve_executable_from_environment(engine.command);
|
||||
auto path_or_error = Core::System::resolve_executable_from_environment(engine.command);
|
||||
if (path_or_error.is_error())
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue