Skip to content

Commit b6fdfb8

Browse files
committed
Update random-emoji to support old bash
Old version bash does not support `mapfile` command
1 parent 07f691b commit b6fdfb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/communication/emojis/random-emoji.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if ! command -v jq &> /dev/null; then
2424
exit 1;
2525
fi
2626

27-
mapfile -t EMOJIS < <(curl -s https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json | jq -r '.[] | .emoji')
27+
IFS=$'\n' read -d '' -r -a EMOJIS < <(curl -s https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json | jq -r '.[] | .emoji' && printf '\0')
2828
EMOJI="${EMOJIS[$RANDOM % ${#EMOJIS[@]}]}"
2929
echo -n "$EMOJI" | pbcopy
3030
echo "$EMOJI"

0 commit comments

Comments
 (0)