chiark / gitweb /
dgit: fix a reference to parent directory
authorSean Whitton <spwhitton@spwhitton.name>
Fri, 27 Jul 2018 04:40:07 +0000 (12:40 +0800)
committerSean Whitton <spwhitton@spwhitton.name>
Sat, 28 Jul 2018 04:12:05 +0000 (12:12 +0800)
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
debian/changelog
dgit

index aaafe2334aeff914ed83dbfb6be31b1d14d63762..e6ff923aefad58cdcc4b164f6ff7065b86fd9d92 100644 (file)
@@ -1,6 +1,8 @@
 dgit (6.1~) unstable; urgency=medium
 
-  * 
+  Minor fixes:
+  * Fix an error message to refer to the build products dir instead of
+    just the parent directory [Sean Whitton].
 
  --
 
diff --git a/dgit b/dgit
index 324fdad68e3c300269eacf5e662ebd88a1b77a57..3d9e5f68fe907ddde2f7df4213faee264859eb70 100755 (executable)
--- a/dgit
+++ b/dgit
@@ -6497,9 +6497,9 @@ sub cmd_sbuild {
     midbuild_checkchanges();
     in_bpd {
        if (act_local()) {
-           stat_exists $dscfn or fail "$dscfn (in parent directory): $!";
+           stat_exists $dscfn or fail "$dscfn (in build products dir): $!";
            stat_exists $sourcechanges
-               or fail "$sourcechanges (in parent directory): $!";
+               or fail "$sourcechanges (in build products dir): $!";
        }
        runcmd_ordryrun_local @sbuild, qw(-d), $isuite, @ARGV, $dscfn;
     };