1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

- Fixed "permission denied" error

- Prevented full ports tree build when operating with ~/.cvsrc

PR:		ports/139121
This commit is contained in:
Greg Larkin 2009-10-06 00:48:13 +00:00
parent 0185624f33
commit e49ea39cc3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=242501

View File

@ -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}