From: Ian Jackson Date: Mon, 1 Oct 2018 13:55:06 +0000 (+0100) Subject: dgit: fix import-dsc missing file reference X-Git-Tag: archive/debian/7.0_pre1~14 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=ae76da9e192b4284324c28ee0b7c75c245850f50;ds=sidebyside dgit: fix import-dsc missing file reference The message used to say ../ but actually nowadays we look in bpd and next to the .dsc. Change it to say .../. Signed-off-by: Ian Jackson --- diff --git a/dgit b/dgit index 32b024ec..5aa1197c 100755 --- a/dgit +++ b/dgit @@ -6848,7 +6848,7 @@ END $dscfn; } $there =~ s#/+[^/]+$## or fail f_ - "import %s requires ../%s, but it does not exist", + "import %s requires .../%s, but it does not exist", $dscfn, $f; $there .= "/$f"; my $test = $there =~ m{^/} ? $there : "../$there";