We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55a7524 commit cf2f07cCopy full SHA for cf2f07c
scripts/gef.sh
@@ -34,11 +34,10 @@ elif [ $curl_found -eq 1 ]; then
34
curl --silent --location --output "${HOME}/.gef-${tag}.py" "https://github.com/hugsy/gef/raw/${tag}/gef.py"
35
fi
36
37
-if [ -f "${HOME}/.gef-${tag}.py}" ]; then
38
- # Create the new gdbinit
+if [ -f "${HOME}/.gef-${tag}.py" ]; then
39
echo "source ~/.gef-${tag}.py" > ~/.gdbinit
40
exit 0
+else
41
+ echo "GEF was not properly downloaded"
42
+ exit 1
43
-
-echo "GEF was not properly downloaded"
44
-exit 1
0 commit comments