base-files: Really check path in get_mac_binary

Currently, path argument is only checked for being not empty.

This changes behavior to actually check whether path exists.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
master
Adrian Schmutzler 5 years ago committed by Christian Lamparter
parent acd2497cfb
commit cd4fcd46f1
  1. 2
      package/base-files/files/lib/functions/system.sh

@ -4,7 +4,7 @@ get_mac_binary() {
local path="$1"
local offset="$2"
if [ -z "$path" ]; then
if [ -e "$path" ]; then
echo "get_mac_binary: file $path not found!" >&2
return
fi

Loading…
Cancel
Save