From: Don Armstrong Date: Mon, 22 Jun 2015 21:51:17 +0000 (-0700) Subject: change escape rules for sign_and_upload X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=20597277d4d84e9a71427267456e9eb34568320b;p=bin.git change escape rules for sign_and_upload --- 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;