summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2018-07-27 12:40:07 +0800
committerSean Whitton <spwhitton@spwhitton.name>2018-07-28 12:12:05 +0800
commit363bb8c82470b15808324744004ce16948136d41 (patch)
tree9b78d8f3143b39c403c9544ef9aacd804537fe47 /dgit
parent109371f135f2ef9a6d1d6a4194b83a9e7e6a48b1 (diff)
dgit: fix a reference to parent directory
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit4
1 files changed, 2 insertions, 2 deletions
diff --git a/dgit b/dgit
index 324fdad..3d9e5f6 100755
--- 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;
};