aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-06-30 09:45:49 -0700
committerGerald Combs <gerald@wireshark.org>2022-07-06 15:04:25 +0000
commit75efbb1ac4590f0e086bd3d028bc8b525b8eb3c6 (patch)
treeea83ae6be0c205a8bab41e1463807cd460a96c16 /tools
parent78ebafd70821d5c2de9b9e085097780d736cdfac (diff)
Rename Logwolf to Logray
Switch to the name "Logray" for the log analyzer. Rays are biological cousins of sharks and more people like the name "Logray" in a completely unscientific survey here. Apologies for any inconvenience this might cause.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/macos-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/macos-setup.sh b/tools/macos-setup.sh
index 4d23d27fb1..432d2a94f3 100755
--- a/tools/macos-setup.sh
+++ b/tools/macos-setup.sh
@@ -3563,11 +3563,11 @@ echo
echo "mkdir build; cd build"
if [ ! -z "$NINJA_VERSION" ]; then
echo "cmake -G Ninja .."
- echo "ninja wireshark_app_bundle logwolf_app_bundle # (Modify as needed)"
+ echo "ninja wireshark_app_bundle logray_app_bundle # (Modify as needed)"
echo "ninja install/strip"
else
echo "cmake .."
- echo "make $MAKE_BUILD_OPTS wireshark_app_bundle logwolf_app_bundle # (Modify as needed)"
+ echo "make $MAKE_BUILD_OPTS wireshark_app_bundle logray_app_bundle # (Modify as needed)"
echo "make install/strip"
fi
echo