From e0a68d4b6e9ecd8343bcb486c4ec7054b8e920c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Kurttekin?= Date: Sat, 15 May 2021 15:00:23 +0300 Subject: HackStudio: Pledge "fattr" HackStudio's pledges recently tightened due to changes in Core::EventLoop. However, it still needs the fattr pledge to be able to create a new project and set its permissions. --- Userland/DevTools/HackStudio/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/DevTools/HackStudio') diff --git a/Userland/DevTools/HackStudio/main.cpp b/Userland/DevTools/HackStudio/main.cpp index 8efdd5f0be..b54d82e207 100644 --- a/Userland/DevTools/HackStudio/main.cpp +++ b/Userland/DevTools/HackStudio/main.cpp @@ -40,7 +40,7 @@ static void update_path_environment_variable(); int main(int argc, char** argv) { - if (pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix thread ptrace", nullptr) < 0) { + if (pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix fattr thread ptrace", nullptr) < 0) { perror("pledge"); return 1; } -- cgit v1.2.3