summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2019-07-23 16:03:49 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2019-07-23 16:03:49 +0100
commit92e5cb8a90df986f05a2e9c5435d068486320d7a (patch)
treeb8196231b9fcef59198fea52e144d5170ecaa8b0
parent7f1d8a2f4545daba6952981e4836b902b32d2005 (diff)
tag2upload: Use the non-readonly method for dgit fetch
The principal effect in the Debian configuration is to access the master dgit git server via ssh, rather than the mirror via https. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
-rwxr-xr-xinfra/dgit-repos-server2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/dgit-repos-server b/infra/dgit-repos-server
index 4c7e031..f94315a 100755
--- a/infra/dgit-repos-server
+++ b/infra/dgit-repos-server
@@ -1263,7 +1263,7 @@ END
$clogf->('Version', $version);
$clogf->('Source', $package);
- @fetch = (@dgit, qw(fetch), $suite);
+ @fetch = (@dgit, qw(--for-push fetch), $suite);
debugcmd "+",@_;
$!=0; $?=-1;
if (system @fetch) {