mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
pm3: look for cmake proxmark3 executable as well
This commit is contained in:
parent
cc914ccac1
commit
e172c33652
1 changed files with 8 additions and 1 deletions
9
pm3
9
pm3
|
@ -15,7 +15,14 @@ FULLIMAGE="fullimage.elf"
|
||||||
BOOTIMAGE="bootrom.elf"
|
BOOTIMAGE="bootrom.elf"
|
||||||
# try pm3 dirs in current repo workdir
|
# try pm3 dirs in current repo workdir
|
||||||
if [ -d "$PM3PATH/client/" ]; then
|
if [ -d "$PM3PATH/client/" ]; then
|
||||||
CLIENT="$PM3PATH/client/proxmark3"
|
if [ -x "$PM3PATH/client/proxmark3" ]; then
|
||||||
|
CLIENT="$PM3PATH/client/proxmark3"
|
||||||
|
elif [ -x "$PM3PATH/client/build/proxmark3" ]; then
|
||||||
|
CLIENT="$PM3PATH/client/build/proxmark3"
|
||||||
|
else
|
||||||
|
echo >&2 "[!!] In devel workdir but no executable found, did you compile it?"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
# try install dir
|
# try install dir
|
||||||
elif [ -x "$PM3PATH/proxmark3" ]; then
|
elif [ -x "$PM3PATH/proxmark3" ]; then
|
||||||
CLIENT="$PM3PATH/proxmark3"
|
CLIENT="$PM3PATH/proxmark3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue