Merge pull request #1101 from harmony-ek/fix_duplicate_key_false_alarm

Fix “multiple key files found” if pwd is $HOME
pull/1104/head
Eugene Kim 5 years ago committed by GitHub
commit ee54b3da71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      scripts/node.sh

@ -143,7 +143,8 @@ case "${BLSKEYFILE}" in
BLSKEYFILE="${f}"
;;
*)
err 69 "multiple key files found (${f}, ${BLSKEYFILE}); please use -k to specify"
[ "${f}" -ef "${BLSKEYFILE}" ] || \
err 69 "multiple key files found (${f}, ${BLSKEYFILE}); please use -k to specify"
;;
esac
done

Loading…
Cancel
Save