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 b7bd9e4 commit a9fb48bCopy full SHA for a9fb48b
1 file changed
src/scripts/extensions/relay.sh
@@ -48,6 +48,14 @@ change_library_paths() {
48
fi
49
}
50
51
+# Link hiredis library
52
+link_hiredis() {
53
+ lib_dir="${brew_prefix:?}"/opt/hiredis/lib
54
+ if [ -e "$lib_dir"/libhiredis_ssl.1.1.0.dylib ]; then
55
+ sudo ln -sd "$lib_dir"/libhiredis_ssl.1.1.0.dylib "$lib_dir"/libhiredis_ssl.dylib.1.1.0
56
+ fi
57
+}
58
+
59
# Add relay dependencies
60
add_relay_dependencies() {
61
add_extension json
@@ -57,6 +65,7 @@ add_relay_dependencies() {
65
. "${0%/*}"/tools/brew.sh
66
configure_brew
67
brew install hiredis lz4 zstd concurrencykit
68
+ link_hiredis
69
70
62
71
0 commit comments