diff options
author | Andy Parkins <andyparkins@gmail.com> | 2007-02-13 15:26:16 +0000 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-02-13 10:35:58 -0500 |
commit | 022fef30facd6865d99b0cfceead7de3d60fe7de (patch) | |
tree | d2aa3b0335f02043d0f499c83c6da74d82531316 /GIT-VERSION-GEN | |
parent | git-gui: Change base version to 0.6. (diff) | |
download | tgif-022fef30facd6865d99b0cfceead7de3d60fe7de.tar.xz |
git-gui: fix typo in GIT-VERSION-GEN, "/dev/null" not "/devnull"
Signed-off-by: Andy Parkins <andyparkins@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'GIT-VERSION-GEN')
-rwxr-xr-x | GIT-VERSION-GEN | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 8fac8cb410..9966126da2 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -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) && |