diff --git a/Userland/Shell/Shell.cpp b/Userland/Shell/Shell.cpp index f5f480bd4dc..7b430f8eef7 100644 --- a/Userland/Shell/Shell.cpp +++ b/Userland/Shell/Shell.cpp @@ -846,7 +846,7 @@ void Shell::execute_process(Vector&& argv) { #ifdef __serenity__ for (auto& promise : m_active_promises) { - pledge("exec", promise.data.exec_promises.characters()); + pledge("stdio rpath exec", promise.data.exec_promises.characters()); for (auto& item : promise.data.unveils) unveil(item.path.characters(), item.access.characters()); }