From 3ce1e93a89772b0e3ac9f3d8f501fc0448f7434d Mon Sep 17 00:00:00 2001 From: Seth Grover Date: Thu, 13 Apr 2023 22:25:02 -0600 Subject: [PATCH] don't gripe about not being able to find files in some directories --- shared/bin/keystore-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/bin/keystore-bootstrap.sh b/shared/bin/keystore-bootstrap.sh index 778faa522..04f1251a3 100644 --- a/shared/bin/keystore-bootstrap.sh +++ b/shared/bin/keystore-bootstrap.sh @@ -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}")/..)"