summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-10-01 14:55:06 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-10-01 14:55:06 +0100
commitae76da9e192b4284324c28ee0b7c75c245850f50 (patch)
tree265737f934c4e9933d017d96a22a940759769eb4 /dgit
parent18c41ad7f852905ddf59eede58d0697390d0b36a (diff)
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 <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index 32b024e..5aa1197 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";