diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-13 13:48:52 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-13 13:48:52 -0800 |
commit | ea44949605781d1947ba1422ee541867e7ce9b81 (patch) | |
tree | 1a0e5919e7f0f3843a44c31317bab382eaa4504f | |
parent | cec8d146fc020c3815d424ff6d94b3d3a1aaf1ff (diff) | |
parent | 022fef30facd6865d99b0cfceead7de3d60fe7de (diff) | |
download | git-ea44949605781d1947ba1422ee541867e7ce9b81.tar.gz git-ea44949605781d1947ba1422ee541867e7ce9b81.tar.xz |
Merge branch 'master' of git://repo.or.cz/git-gui
* 'master' of git://repo.or.cz/git-gui:
git-gui: fix typo in GIT-VERSION-GEN, "/dev/null" not "/devnull"
-rwxr-xr-x | git-gui/GIT-VERSION-GEN | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui/GIT-VERSION-GEN b/git-gui/GIT-VERSION-GEN index 8fac8cb41..9966126da 100755 --- a/git-gui/GIT-VERSION-GEN +++ b/git-gui/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) && |