summaryrefslogtreecommitdiff
path: root/distrib/MacOS/installer-scripts/Uninstaller
diff options
context:
space:
mode:
Diffstat (limited to 'distrib/MacOS/installer-scripts/Uninstaller')
-rw-r--r--distrib/MacOS/installer-scripts/Uninstaller18
1 files changed, 9 insertions, 9 deletions
diff --git a/distrib/MacOS/installer-scripts/Uninstaller b/distrib/MacOS/installer-scripts/Uninstaller
index 0b79258f25..678fce8272 100644
--- a/distrib/MacOS/installer-scripts/Uninstaller
+++ b/distrib/MacOS/installer-scripts/Uninstaller
@@ -48,19 +48,19 @@ if [ ${NO_VERSIONS} -ne 2 ]; then
fi
echo "Removing symbolic links into GHC.framework"
-for thisfile in `ls ${INSTALL_BIN}`; do
- if ls -l ${INSTALL_BIN}/${thisfile} | grep -q GHC.framework/Versions; then
- rm -f ${INSTALL_BIN}/${thisfile}
+for thisfile in ${INSTALL_BIN}/*; do
+ if ls -l "${thisfile}" | grep -q GHC.framework/Versions; then
+ rm -f "${thisfile}"
fi
done
-for thisfile in `ls ${INSTALL_MAN1}`; do
- if ls -l ${INSTALL_MAN1}/${thisfile} | grep -q GHC.framework/Versions; then
- rm -f ${INSTALL_MAN1}/${thisfile}
+for thisfile in ${INSTALL_MAN1}/*; do
+ if ls -l "${thisfile}" | grep -q GHC.framework/Versions; then
+ rm -f "${thisfile}"
fi
done
-for thisfile in `ls ${INSTALL_HTML}`; do
- if ls -l ${INSTALL_HTML}/${thisfile} | grep -q GHC.framework/Versions; then
- rm -f ${INSTALL_HTML}/${thisfile}
+for thisfile in ${INSTALL_HTML}/*; do
+ if ls -l "${thisfile}" | grep -q GHC.framework/Versions; then
+ rm -f "${thisfile}"
fi
done