mirror of
https://github.com/git/git
synced 2024-10-30 04:01:21 +00:00
[PATCH] typo fixes to git-apply-patch-script
When git-apply-patch-script creates a new file without executable mode set, a typo caused it not to report that activity to the user. Also it was mistakenly running git-update-cache twice for newly created or deleted paths. This patch fixes these problems. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
dfcb405799
commit
7fa76eeb75
1 changed files with 2 additions and 4 deletions
|
@ -31,7 +31,7 @@ test -f "$name.rej" || {
|
||||||
echo >&2 "created $name with mode +x."
|
echo >&2 "created $name with mode +x."
|
||||||
chmod "$mode2" "$name"
|
chmod "$mode2" "$name"
|
||||||
;;
|
;;
|
||||||
-)
|
-x)
|
||||||
echo >&2 "created $name."
|
echo >&2 "created $name."
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -52,9 +52,7 @@ test -f "$name.rej" || {
|
||||||
chmod "$mode2" "$name"
|
chmod "$mode2" "$name"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
git-update-cache -- "$name"
|
||||||
esac
|
esac
|
||||||
# This bit is debatable---the SCM may not want to keep
|
|
||||||
# cache in sync with the work tree (JIT does want to).
|
|
||||||
git-update-cache -- "$name"
|
|
||||||
}
|
}
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue