From 8e3ec3f22b4dee6dcb0bda8a756ac91b7b51dd38 Mon Sep 17 00:00:00 2001 From: kernel-sanders Date: Thu, 26 May 2016 21:49:19 -0400 Subject: [PATCH] Fix line .gdbinit modification line Your install instructions say to cd into the top level pwndbg directory and run ./setup.sh. This causes your last popd on line 27 to put you back there, and then line 32 adds an extra /pwndbg/ to the path of gdbinit.py so gdb can't find it on launch. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 78c1a2e71..55d8302db 100755 --- a/setup.sh +++ b/setup.sh @@ -29,5 +29,5 @@ done # Load Pwndbg into GDB on every launch. if ! grep pwndbg ~/.gdbinit &>/dev/null; then - echo "source $PWD/pwndbg/gdbinit.py" >> ~/.gdbinit + echo "source $PWD/gdbinit.py" >> ~/.gdbinit fi