1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 16:40:24 +02:00

44958: vcs_info quilt: Avoid forks

This commit is contained in:
Daniel Shahaf 2019-11-29 20:52:00 +00:00
parent cc3983ee58
commit 98f8a8a980
3 changed files with 12 additions and 5 deletions

View file

@ -78,7 +78,7 @@ function VCS_INFO_quilt-dirfind() {
VCS_INFO_bydir_detect ${dir}
ret=$?
vcs_comm[detect_need_file]=${oldfile}
printf '%s' ${vcs_comm[basedir]}
REPLY=${vcs_comm[basedir]}
vcs_comm[basedir]="${olddir}"
return ${ret}
}
@ -113,8 +113,8 @@ function VCS_INFO_quilt-patch2subject() {
;;
esac
pc="$(VCS_INFO_quilt-dirfind .pc .version)"
ret=$?
VCS_INFO_quilt-dirfind .pc .version
ret=$? pc=$REPLY
if (( ret == 0 )); then
[[ ${quiltmode} == 'standalone' ]] && root=${pc}
pc=${pc}/.pc
@ -138,8 +138,8 @@ function VCS_INFO_quilt-patch2subject() {
zstyle -s "${context}" quilt-patch-dir patches || patches="${QUILT_PATCHES}"
if [[ "${patches}" != /* ]]; then
tmp=${patches:-patches}
patches="$(VCS_INFO_quilt-dirfind "${tmp}")"
ret=$?
VCS_INFO_quilt-dirfind "${tmp}"
ret=$? patches=$REPLY
(( ret )) && return ${ret}
patches=${patches}/${tmp}
else