diff options
Diffstat (limited to 'Userland/Shell')
-rw-r--r-- | Userland/Shell/Shell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/Shell.cpp b/Userland/Shell/Shell.cpp index b558e84b59..6a8fdc3d62 100644 --- a/Userland/Shell/Shell.cpp +++ b/Userland/Shell/Shell.cpp @@ -2189,7 +2189,7 @@ Shell::Shell() path.append({ path_env_ptr, strlen(path_env_ptr) }); if (path.length()) path.append(":"sv); - path.append("/usr/local/sbin:/usr/local/bin:/usr/bin:/bin"sv); + path.append(DEFAULT_PATH_SV); setenv("PATH", path.to_string().characters(), true); } |