summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2013-08-24 18:06:55 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2013-08-24 18:06:55 +0100
commit7cc77250e68bee4283757b7516e0a70f77904086 (patch)
treecdc4e52d2d75081955deb1bb54db75bd0e301063
parent7b420a182b9f3ee9295997bfea192b7db5609ffe (diff)
fix bug which causes all uploads to go to sid (!)
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index 406589a..2d47dbf 100755
--- a/dgit
+++ b/dgit
@@ -1064,7 +1064,7 @@ sub build_source {
check_not_dirty();
my $clogp = parsechangelog();
$package = getfield $clogp, 'Source';
- my $isuite = getfield $clogp, 'Distribution';
+ $isuite = getfield $clogp, 'Distribution';
$version = getfield $clogp, 'Version';
$sourcechanges = "${package}_${version}_source.changes";
$dscfn = dscfn($version);