Skip to content

Commit 97aae91

Browse files
authored
Merge pull request #32 from vladlosev/fix-macos-install
fix: MacOS install for app bundles.
2 parents 3c19e67 + b897fcf commit 97aae91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ install_client_binary() {
111111
if [ ! -f "$binary_path" -a -d "${binary_path}.app" ]; then
112112
# Hanle MacOS application bundle.
113113
mv "${binary_path}.app" "$install_path/bin/${binary}.app"
114-
( cd "$install_path/bin" && ln -s "$binary" "${binary}.app/Contents/MacOS/$binary" )
114+
(cd "$install_path/bin" && ln -s "${binary}.app/Contents/MacOS/$binary" "$binary")
115115
else
116116
mv "$binary_path" "$install_path/bin/$binary"
117117
fi

0 commit comments

Comments
 (0)