summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mergemaster
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2009-12-19 01:32:34 +0000
committerdougb <dougb@FreeBSD.org>2009-12-19 01:32:34 +0000
commit89d1f9ba7df6e2819f6464b3a3f91a42c4e24f4f (patch)
treec05197f53921a946f51d318cffd26f9fb2a6219a /usr.sbin/mergemaster
parent9a1619a0ebb435ac116023983bbfc64abb14d0ac (diff)
downloadFreeBSD-src-89d1f9ba7df6e2819f6464b3a3f91a42c4e24f4f.zip
FreeBSD-src-89d1f9ba7df6e2819f6464b3a3f91a42c4e24f4f.tar.gz
Fix an indentation issue, no functional changes
Diffstat (limited to 'usr.sbin/mergemaster')
-rwxr-xr-xusr.sbin/mergemaster/mergemaster.sh44
1 files changed, 22 insertions, 22 deletions
diff --git a/usr.sbin/mergemaster/mergemaster.sh b/usr.sbin/mergemaster/mergemaster.sh
index 08fab3f..fa88741 100755
--- a/usr.sbin/mergemaster/mergemaster.sh
+++ b/usr.sbin/mergemaster/mergemaster.sh
@@ -840,33 +840,33 @@ mm_install () {
DONT_INSTALL=yes
;;
/.cshrc | /.profile)
- case "${AUTO_INSTALL}" in
- '')
- case "${LINK_EXPLAINED}" in
+ case "${AUTO_INSTALL}" in
'')
- echo " *** Historically BSD derived systems have had a"
- echo " hard link from /.cshrc and /.profile to"
- echo " their namesakes in /root. Please indicate"
- echo " your preference below for bringing your"
- echo " installed files up to date."
+ case "${LINK_EXPLAINED}" in
+ '')
+ echo " *** Historically BSD derived systems have had a"
+ echo " hard link from /.cshrc and /.profile to"
+ echo " their namesakes in /root. Please indicate"
+ echo " your preference below for bringing your"
+ echo " installed files up to date."
+ echo ''
+ LINK_EXPLAINED=yes
+ ;;
+ esac
+
+ echo " Use 'd' to delete the temporary ${COMPFILE}"
+ echo " Use 'l' to delete the existing ${DESTDIR}${COMPFILE#.} and create the link"
+ echo ''
+ echo " Default is to leave the temporary file to deal with by hand"
echo ''
- LINK_EXPLAINED=yes
+ echo -n " How should I handle ${COMPFILE}? [Leave it to install later] "
+ read HANDLE_LINK
+ ;;
+ *) # Part of AUTO_INSTALL
+ HANDLE_LINK=l
;;
esac
- echo " Use 'd' to delete the temporary ${COMPFILE}"
- echo " Use 'l' to delete the existing ${DESTDIR}${COMPFILE#.} and create the link"
- echo ''
- echo " Default is to leave the temporary file to deal with by hand"
- echo ''
- echo -n " How should I handle ${COMPFILE}? [Leave it to install later] "
- read HANDLE_LINK
- ;;
- *) # Part of AUTO_INSTALL
- HANDLE_LINK=l
- ;;
- esac
-
case "${HANDLE_LINK}" in
[dD]*)
rm "${COMPFILE}"
OpenPOWER on IntegriCloud