We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b89ddc4 commit 54b1fc8Copy full SHA for 54b1fc8
package/rebuild-todo
@@ -227,7 +227,7 @@ pkgctl repo clone "${packages[@]}"
227
if ((IMPORT_KEYS)); then
228
echo "Importing PGP keys..."
229
# Only add paths that actually have key(s) to import and ignore paths that don't, don't exit on error
230
- key_paths=($(find "${packages[@]/%//keys/pgp}" -type f 2>/dev/null || true))
+ mapfile -td ' ' key_paths < <(find "${packages[@]/%//keys/pgp}" -type f 2>/dev/null) || true
231
232
if ((${#key_paths[@]})); then
233
cat "${key_paths[@]}" | if [[ -z "$OFFLOAD" ]]; then
0 commit comments