From 8211df81d5cbf5b4c0902622be2675626a151132 Mon Sep 17 00:00:00 2001
From: Jean-Michel Picod <jmichel@google.com>
Date: Wed, 29 Apr 2020 11:46:52 +0200
Subject: [PATCH] Adjust regexp

---
 .github/python_matcher.json | 2 +-
 deploy.py                   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/python_matcher.json b/.github/python_matcher.json
index 4c9a945..6c99675 100644
--- a/.github/python_matcher.json
+++ b/.github/python_matcher.json
@@ -8,7 +8,7 @@
                     "file": 1
                 },
                 {
-                    "regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((reformatted)\\)$",
+                    "regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((.*)\\)$",
                     "message": 2
                 },
                 {
diff --git a/deploy.py b/deploy.py
index 93dbe7b..16276ca 100755
--- a/deploy.py
+++ b/deploy.py
@@ -342,8 +342,8 @@ class OpenSKInstaller:
     env["RUSTFLAGS"] = " ".join(rust_flags)
 
     command = [
-        "cargo", "build",
-        "--release", "--target={}".format(props.arch),
+        "cargo",
+        "build", "--release", "--target={}".format(props.arch),
         "--features={}".format(",".join(self.args.features))
     ]
     if is_example:
-- 
GitLab