diff options
author | vd <vd@FreeBSD.org> | 2007-01-26 22:25:39 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2007-01-26 22:25:39 +0800 |
commit | a7b5aba9eed7ff8bc72b93599c79b57701421105 (patch) | |
tree | e9bfc57eef4931956ea1a6e38f1407709a856fcc /Tools | |
parent | b9021af9a0efea6c4af9a356d1f3597e52aedd18 (diff) | |
download | freebsd-ports-gnome-a7b5aba9eed7ff8bc72b93599c79b57701421105.tar.gz freebsd-ports-gnome-a7b5aba9eed7ff8bc72b93599c79b57701421105.tar.zst freebsd-ports-gnome-a7b5aba9eed7ff8bc72b93599c79b57701421105.zip |
A bunch of cosmetic changes - add one empty line to make the output more
readable and use double quotes everywhere.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/rmport | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport index 6156179b8de2..0ea2af3c83bd 100755 --- a/Tools/scripts/rmport +++ b/Tools/scripts/rmport @@ -200,13 +200,13 @@ check_dep() break fi - echo '' >&2 - echo 'you can ignore the above issues and proceed anyway.' >&2 - echo 'if this is the case, then either:' >&2 - echo ' * these are false positives' >&2 - echo ' * you want to break something' >&2 + echo "" >&2 + echo "you can ignore the above issues and proceed anyway." >&2 + echo "if this is the case, then either:" >&2 + echo " * these are false positives" >&2 + echo " * you want to break something" >&2 echo " * your ${PORTSDIR} is out of date, consider setting PORTSDIR in environment" >&2 - echo ' point to a newer instance of the ports tree' >&2 + echo " point to a newer instance of the ports tree" >&2 echo "or you can hit \`n' to repeat the check" >&2 answer=`ask "ignore the above issues"` if [ "${answer}" = "y" ] ; then @@ -546,6 +546,7 @@ while [ "${answer}" = "y" ] ; do # EDITOR instead of PAGER because vim has nice syntax highlighting ;-) ${EDITOR} ${diffout} + echo "" >&2 echo "you can now edit files under ${codir}/ by hand" >&2 answer=`ask "do you want to recreate the diff?"` done |