From 20597277d4d84e9a71427267456e9eb34568320b Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 22 Jun 2015 14:51:17 -0700 Subject: [PATCH 1/1] change escape rules for sign_and_upload --- sign_and_upload_debian_r | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sign_and_upload_debian_r b/sign_and_upload_debian_r index 5663eb0..1475080 100755 --- a/sign_and_upload_debian_r +++ b/sign_and_upload_debian_r @@ -14,7 +14,10 @@ else fi; -ssh $C2DEBMACHINE "find . -type f -iname '*.changes' -print0|perl -n0e '$b = $_; $b =~ s/.changes/.upload/; -e $b || print $_.qq(\0);'" | \ - xargs -0 debsign -r $C2DEBMACHINE -k$KEYID +ssh $C2DEBMACHINE find . -type f -iname '*.changes' -print0 \| \ + perl -n0e '$b = $_; $b =~ s/.changes/.upload/; -e $b || print $_.qq(\0);' | \ + xargs -0 debsign -r $C2DEBMACHINE -k$KEYID; -ssh $C2DEBMACHINE "find . -type f -iname '*.changes' -print0|perl -n0e '$b = $_; $b =~ s/.changes/.upload/; -e $b || print $_.qq(\0);' | xargs -0 dupload --to debianr )" +ssh $C2DEBMACHINE find . -type f -iname '*.changes' -print0 \| \ + perl -n0e '$b = $_; $b =~ s/.changes/.upload/; -e $b || print $_.qq(\0);' \| \ + xargs -0 dupload --to debianr; -- 2.39.2