diff --git a/Userland/Utilities/pwd.cpp b/Userland/Utilities/pwd.cpp index 358b095c45..886f0f3fe7 100644 --- a/Userland/Utilities/pwd.cpp +++ b/Userland/Utilities/pwd.cpp @@ -11,7 +11,7 @@ ErrorOr serenity_main(Main::Arguments) { - TRY(Core::System::pledge("stdio")); + TRY(Core::System::pledge("rpath stdio")); outln(TRY(Core::System::getcwd())); return 0; }