summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2016-10-19 05:34:47 (GMT)
committerJulien Cristau <jcristau@debian.org>2016-10-19 05:34:47 (GMT)
commit6b98ab963dba863c76a3923609602851bde6b402 (patch)
tree18003d59922fe3c831dd4671814ccda13034c60d
parentfc9b919df580daf1183649bf197cb2c06a41e95b (diff)
downloaddebootstrap-6b98ab963dba863c76a3923609602851bde6b402.zip
debootstrap-6b98ab963dba863c76a3923609602851bde6b402.tar.gz
debootstrap-6b98ab963dba863c76a3923609602851bde6b402.tar.bz2
Fix syntax error from the InRelease change
Thanks, David Schneider!
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index dbb9b98..5630d59 100644
--- a/functions
+++ b/functions
@@ -556,7 +556,7 @@ download_release_indices () {
progress 0 100 DOWNREL "Downloading Release file"
progress_next 100
if get "$m1/dists/$SUITE/InRelease" "$inreldest" nocache; then
- sed -n '/^-----BEGIN PGP SIGNATURE-----$/,/^-----END PGP SIGNATURE-----$/p' <
+ sed -n '/^-----BEGIN PGP SIGNATURE-----$/,/^-----END PGP SIGNATURE-----$/p' < \
"$inreldest" > "$relsigdest"
# We assume \a does not appear in the Release file, and strip
# the last \n through the tr round-trip.