diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2007-01-26 14:25:39 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2007-01-26 14:25:39 +0000 |
commit | 92615ddfc44ce7335b97b74144ee10ecb0c9aef7 (patch) | |
tree | f06d72947d609787b38cccb042fc8313779d9d0e /Tools | |
parent | a0a5ea5364eb22b5c52a250bb9f035bbf22e3551 (diff) | |
download | ports-92615ddfc44ce7335b97b74144ee10ecb0c9aef7.tar.gz ports-92615ddfc44ce7335b97b74144ee10ecb0c9aef7.zip |
Notes
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 |