Fix quoting.

Change-Id: I3a0a8c661b1fec2ea4475eb9fe1d5c8a8ed7bbb5
Reviewed-on: https://code.wireshark.org/review/30328
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2018-10-22 00:35:29 -07:00
parent a2514faf1d
commit 714c5dc2ab
1 changed files with 4 additions and 4 deletions

View File

@ -46,11 +46,11 @@ echo $WSMANPATH > /etc/manpaths.d/Wireshark
# X11, and haven't used it since Wireshark 2.0, so we don't need it.
#
XQUARTZ_FIXER_PLIST="/Library/LaunchDaemons/org.wireshark.XQuartzFixer.plist"
if [ -e "$XQUARTZ_FIXER_PLIST ]
if [ -e "$XQUARTZ_FIXER_PLIST" ]
then
launchctl unload $XQUARTZ_FIXER_PLIST
rm -rf /Library/Application Support/Wireshark/XQuartzFixer
rm -f $XQUARTZ_FIXER_PLIST
launchctl unload "$XQUARTZ_FIXER_PLIST"
rm -rf "/Library/Application Support/Wireshark/XQuartzFixer"
rm -f "$XQUARTZ_FIXER_PLIST"
fi
#