[tor-commits] [tor-browser-build/master] Bug 23812: fix parsing of runc spec version

gk at torproject.org gk at torproject.org
Wed Oct 18 06:24:25 UTC 2017


commit bfdc5bc5aecceb8ec713562f36134e6ec64cc845
Author: Nicolas Vigier <boklm at torproject.org>
Date:   Wed Oct 11 00:53:00 2017 +0200

    Bug 23812: fix parsing of runc spec version
---
 rbm.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rbm.conf b/rbm.conf
index c433f00..6b5fc3e 100644
--- a/rbm.conf
+++ b/rbm.conf
@@ -383,7 +383,7 @@ ENV:
       # We will need to update this when there is a new spec version available
       runc_spec100 => sub {
         my ($out) = capture_exec('sudo', 'runc', '--version');
-        return $out =~ m/^runc version spec: 1\.0\.0$/;
+        return $out =~ m/^spec: 1\.0\.0$/m;
       },
     },
   )



More information about the tor-commits mailing list