Mercurial > hg
changeset 5499:e42cbd686c42
Merge with crew-stable.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 30 Oct 2007 16:56:01 -0700 |
parents | 5bff70ff0431 (diff) 81bef3c355c5 (current diff) |
children | 52d6feb62692 |
files | |
diffstat | 3 files changed, 21 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/gpg.py Tue Oct 30 16:54:25 2007 -0700 +++ b/hgext/gpg.py Tue Oct 30 16:56:01 2007 -0700 @@ -249,7 +249,7 @@ message = opts['message'] if not message: message = "\n".join([_("Added signature for changeset %s") - % hgnode.hex(n) + % hgnode.short(n) for n in nodes]) try: repo.commit([".hgsigs"], message, opts['user'], opts['date'])
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-execute-bit Tue Oct 30 16:56:01 2007 -0700 @@ -0,0 +1,15 @@ +#!/bin/sh + +"$TESTDIR/hghave" execbit || exit 80 + +hg init +echo a > a +hg ci -d'0 0' -Am'not executable' + +chmod +x a +hg ci -d'1 0' -m'executable' +hg id + +hg up 0 +hg id +test -x a && echo executable -- eek || echo not executable -- whew