diff options
author | Liam Crilly <liam.crilly@nginx.com> | 2022-12-16 12:46:35 +0000 |
---|---|---|
committer | Liam Crilly <liam.crilly@nginx.com> | 2022-12-16 12:46:35 +0000 |
commit | e2dd3610f372f8e803a841271a31b54e43a63dfb (patch) | |
tree | 46de873427239ceb8caff3d798ab40e06c62ff7f | |
parent | 4409a10ff0bd6bb45fb88716bd383cd867958a8a (diff) | |
download | unit-e2dd3610f372f8e803a841271a31b54e43a63dfb.tar.gz unit-e2dd3610f372f8e803a841271a31b54e43a63dfb.tar.bz2 |
Tools: fixed quoting for apostrophe in setup-unit.
-rwxr-xr-x | tools/setup-unit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/setup-unit b/tools/setup-unit index 79dab850..6c1aec63 100755 --- a/tools/setup-unit +++ b/tools/setup-unit @@ -9,7 +9,7 @@ if test -n ${BASH_VERSION} && test "${BASH_VERSINFO[0]}" -eq 3; then - >&2 echo 'Your version of bash(1) isn't supported by this script.'; + >&2 echo "Your version of bash(1) isn't supported by this script."; >&2 echo "You're probably running on macOS. We recommend that you either"; >&2 echo 'install a newer version of bash(1) or run this script with'; >&2 echo 'another shell, such as zsh(1):'; |