mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Fix bug preventing args to be passed to the client
Bug introduced by ab9dab3294
It was not possible to pass args anymore, e.g. `pm3 -l myscript.lua`
This commit is contained in:
parent
bfd2fc2a56
commit
2a150b8c6b
1 changed files with 1 additions and 0 deletions
1
pm3
1
pm3
|
@ -446,6 +446,7 @@ for ARG; do
|
||||||
CMD "$@"
|
CMD "$@"
|
||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
|
set -- "$@" "$ARG"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "$1" == "--list" ]; then
|
if [ "$1" == "--list" ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue