diff options
author | glarkin <glarkin@FreeBSD.org> | 2009-10-06 08:48:13 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2009-10-06 08:48:13 +0800 |
commit | d60bbabbde2d1574c1b4dc886c48aa4aa6ca8877 (patch) | |
tree | 63a215903abc662f4f73456975dd7b690f12a6f3 /Tools/scripts | |
parent | 3ad0db5cf229a377a5e41a18fa9c38c2bee0b9a9 (diff) | |
download | freebsd-ports-gnome-d60bbabbde2d1574c1b4dc886c48aa4aa6ca8877.tar.gz freebsd-ports-gnome-d60bbabbde2d1574c1b4dc886c48aa4aa6ca8877.tar.zst freebsd-ports-gnome-d60bbabbde2d1574c1b4dc886c48aa4aa6ca8877.zip |
- Fixed "permission denied" error
- Prevented full ports tree build when operating with ~/.cvsrc
PR: ports/139121
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/rmport | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport index f8d4b15e8827..7e6c5ef7a99b 100755 --- a/Tools/scripts/rmport +++ b/Tools/scripts/rmport @@ -400,7 +400,7 @@ diff() commit() { log "running cvs update" - ${PCVS} up ports 2>&1 |${PAGER:-less} + ${PCVS} -fnq up ports 2>&1 |${PAGER:-less} answer=`ask "do you want to commit?"` @@ -528,7 +528,7 @@ done # the diff afterwards answer=y while [ "${answer}" = "y" ] ; do - diffout=`diff` + diffout=diff # EDITOR instead of PAGER because vim has nice syntax highlighting ;-) ${EDITOR} ${diffout} |