Skip to content

Commit

Permalink
Updated for Git 1.7.3.2
Browse files Browse the repository at this point in the history
Fixed the release.sh script to handle paths that include spaces when
testing that git.exe is the newest file in /git.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
  • Loading branch information
patthoyts committed Oct 25, 2010
1 parent fe61e4c commit 23111fa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/git/html
Submodule html updated from 0fd857 to d2179e
2 changes: 1 addition & 1 deletion git
Submodule git updated from 279f4c to 817ffd
11 changes: 8 additions & 3 deletions share/WinGit/ReleaseNotes.rtf
@@ -1,7 +1,7 @@
{\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fswiss\fprq2\fcharset0 Arial;}{\f1\fnil\fcharset0 Arial;}{\f2\fnil\fcharset2 Symbol;}}
{\colortbl ;\red0\green0\blue0;\red0\green0\blue255;}
{\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\cf1\lang1033\b\f0\fs32 Git Release Notes (Git-1.7.3.1-preview20101002)\b0\fs20\par
Last update: 2 October 2010\par
{\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\cf1\lang1033\b\f0\fs32 Git Release Notes (Git-1.7.3.2-preview20101025)\b0\fs20\par
Last update: 25 October 2010\par
\par
\b\fs24 Introduction\b0\fs20\par
\par
Expand All @@ -19,7 +19,12 @@ General release notes covering the history of the core git commands are included
{\pntext\f2\'B7\tab}If configured to use plink, you will have to connect with putty first and accept the host key.\par
{\pntext\f2\'B7\tab}As merge tools are executed using the MSys bash, options starting with "/" need to be handled specially: MSys would interpret that as a POSIX path, so you need to double the slash (Issue 226). Example: instead of "/base", say "//base". Also, extra care has to be paid to pass Windows programs Windows paths, as they have no clue about MSys style POSIX paths -- You can use something like $(cmd //c echo "$POSIXPATH").\par
\pard\b\fs24\par
Changes since Git-1.7.2.3-preview20100911\par
Changes since Git-1.7.3.1-preview20101002\par
\par
\i\fs20 New Features\par
\pard{\pntext\f2\'B7\tab}{\*\pn\pnlvlblt\pnf2\pnindent0{\pntxtb\'B7}}\fi-288\li432\b0\i0 Comes with Git 1.7.3.2 plus patches.\par
\pard\par
\b\fs24 Changes since Git-1.7.2.3-preview20100911\par
\par
\i\fs20 New Features\par
\pard{\pntext\f2\'B7\tab}{\*\pn\pnlvlblt\pnf2\pnindent0{\pntxtb\'B7}}\fi-288\li432\b0\i0 Comes with Git 1.7.3.1 plus patches.\par
Expand Down
2 changes: 1 addition & 1 deletion share/WinGit/release.sh
Expand Up @@ -84,7 +84,7 @@ test -z "$force" && {
git diff-index --cached HEAD --) ||
die "Git submodule has dirty files"
(cd /git &&
test git.exe = $(ls -t git.exe $(git ls-files) | head -n 1)) ||
test git.exe = $((printf 'git.exe\0'; git ls-files -z) | xargs --null ls -t 2>/dev/null| head -1)) ||
die "Git's git.exe is not up-to-date (run 'cd /git && make' to fix)"
for f in /bin/git* /libexec/git-core/git*
do
Expand Down

0 comments on commit 23111fa

Please sign in to comment.