From: Martin Mares Date: Sat, 27 Dec 2003 13:29:27 +0000 (+0000) Subject: There is always one more bug X-Git-Tag: v3.0.0~135 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=4ba798da520388d5b79593f8a2a5503deb9546e2;p=pciutils.git There is always one more bug release: "@" must be escaped in Perl strings. git-archimport-id: mj@ucw.cz--public/pciutils--main--2.2--patch-30 --- diff --git a/maint/release b/maint/release index 67dd369..073836d 100755 --- a/maint/release +++ b/maint/release @@ -33,6 +33,6 @@ $r->GenFile("pciutils.lsm"); $r->Dispatch; if ($r->{"do_upload"}) { print "Uploading pci.ids to Jabberwock\n"; - `scp pci.ids pciids@jabberwock.ucw.cz:05-pciutils.new`; die if $?; - `ssh pciids@jabberwock.ucw.cz mv 05-pciutils.new origs/05-pciutils`; die if $?; + `scp pci.ids pciids\@jabberwock.ucw.cz:05-pciutils.new`; die if $?; + `ssh pciids\@jabberwock.ucw.cz mv 05-pciutils.new origs/05-pciutils`; die if $?; }