Merge lp:~vmiklos/bzr-fastimport/darcs into lp:bzr-fastimport

Proposed by Miklos Vajna
Status: Merged
Approved by: Ian Clatworthy
Approved revision: not available
Merged at revision: not available
Proposed branch: lp:~vmiklos/bzr-fastimport/darcs
Merge into: lp:bzr-fastimport
Diff against target: 13 lines (+2/-1)
1 file modified
exporters/darcs/git-darcs (+2/-1)
To merge this branch: bzr merge lp:~vmiklos/bzr-fastimport/darcs
Reviewer Review Type Date Requested Status
Ian Clatworthy Approve
Review via email: mp+19086@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Miklos Vajna (vmiklos) wrote :

git-darcs fix

Revision history for this message
Ian Clatworthy (ian-clatworthy) wrote :

Can you merge this or do you require me too?

review: Approve
Revision history for this message
Miklos Vajna (vmiklos) wrote :

Please merge, afaik I have no write access to lp:bzr-fastimport.

lp:~vmiklos/bzr-fastimport/darcs updated
274. By Ian Clatworthy

Don't bail for http://path/to/repo darcs remotes

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'exporters/darcs/git-darcs'
2--- exporters/darcs/git-darcs 2009-07-14 15:05:28 +0000
3+++ exporters/darcs/git-darcs 2010-02-11 10:35:23 +0000
4@@ -42,7 +42,8 @@
5 echo "There is already a darcs repo with that name"
6 exit
7 fi
8- if [ ! -d $location/_darcs ]; then
9+ repo=$location/_darcs
10+ if [ ! -d $repo ] && ! wget --quiet --spider $repo; then
11 echo "Remote is not a darcs repository"
12 exit
13 fi

Subscribers

People subscribed via source and target branches