diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-07-06 05:15:18 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-05 23:35:11 -0700 |
commit | 2553ede5a9b09260be69de72b60e5038f5452c44 (patch) | |
tree | a78a971e64e281e309cc337134ba9e48fcbe4dee /contrib | |
parent | 6376cffaebe40947eea9afb4ae6df05a6ac59ae8 (diff) | |
download | git-2553ede5a9b09260be69de72b60e5038f5452c44.tar.gz git-2553ede5a9b09260be69de72b60e5038f5452c44.tar.xz |
hg-to-git: abort if the project directory is not a hg repo
Check the exit code of the first hg command, and abort to avoid a later
ValueError exception.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/hg-to-git/hg-to-git.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/hg-to-git/hg-to-git.py b/contrib/hg-to-git/hg-to-git.py index 25d99411c..130b1c4bc 100755 --- a/contrib/hg-to-git/hg-to-git.py +++ b/contrib/hg-to-git/hg-to-git.py @@ -106,7 +106,10 @@ if state: else: print 'State does not exist, first run' -tip = os.popen('hg tip --template "{rev}"').read() +sock = os.popen('hg tip --template "{rev}"') +tip = sock.read() +if sock.close(): + sys.exit(1) if verbose: print 'tip is', tip |