Skip to content

Commit

Permalink
don't gripe about not being able to find files in some directories
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Apr 14, 2023
1 parent db35047 commit 3ce1e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/bin/keystore-bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
KEYSTORE_FILE_MIN_BYTES=196

# for each "*-keystore" executable in the filesystem...
find / -type f -name "*-keystore" -executable | while read KEYSTORE_BIN; do
find / -type f -name "*-keystore" -executable 2>/dev/null | while read KEYSTORE_BIN; do

# TOOL_PATH is parent of keystore bin, e.g., /usr/share/foobar
TOOL_PATH="$(realpath $(dirname "${KEYSTORE_BIN}")/..)"
Expand Down

0 comments on commit 3ce1e93

Please sign in to comment.