Skip to content

Commit

Permalink
git-gui: fix typo in GIT-VERSION-GEN, "/dev/null" not "/devnull"
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Parkins <andyparkins@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Andy Parkins authored and Shawn O. Pearce committed Feb 13, 2007
1 parent fdf6cfc commit 022fef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GIT-VERSION-GEN
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tree_search ()
{
head=$1
tree=$2
for p in $(git rev-list --parents --max-count=1 $head 2>/devnull)
for p in $(git rev-list --parents --max-count=1 $head 2>/dev/null)
do
test $tree = $(git rev-parse $p^{tree} 2>/dev/null) &&
vn=$(git describe --abbrev=4 $p 2>/dev/null) &&
Expand Down

0 comments on commit 022fef3

Please sign in to comment.