From a6c314119abf6563de1651764756a46e169e6716 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 8 Nov 2014 16:04:07 +0000 Subject: clone: Check for git earlier check_for_git is going to maybe want to change the git-url, so run it sooner. No substantial functional change. --- dgit | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dgit b/dgit index 38b02e4..4c8a09d 100755 --- a/dgit +++ b/dgit @@ -1377,6 +1377,7 @@ sub clone ($) { my ($dstdir) = @_; canonicalise_suite(); badusage "dry run makes no sense with clone" unless act_local(); + my $hasgit = check_for_git(); mkdir $dstdir or die "$dstdir $!"; changedir $dstdir; runcmd @git, qw(init -q); @@ -1388,7 +1389,7 @@ sub clone ($) { close H or die $!; runcmd @git, qw(remote add), 'origin', $giturl; } - if (check_for_git()) { + if ($hasgit) { progress "fetching existing git history"; git_fetch_us(); runcmd_ordryrun_local @git, qw(fetch origin); -- cgit v1.2.3