Adjust regexp

This commit is contained in:
Jean-Michel Picod
2020-04-29 11:46:52 +02:00
parent 8e182b9de9
commit 8211df81d5
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
"file": 1 "file": 1
}, },
{ {
"regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((reformatted)\\)$", "regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((.*)\\)$",
"message": 2 "message": 2
}, },
{ {

View File

@@ -342,8 +342,8 @@ class OpenSKInstaller:
env["RUSTFLAGS"] = " ".join(rust_flags) env["RUSTFLAGS"] = " ".join(rust_flags)
command = [ command = [
"cargo", "build", "cargo",
"--release", "--target={}".format(props.arch), "build", "--release", "--target={}".format(props.arch),
"--features={}".format(",".join(self.args.features)) "--features={}".format(",".join(self.args.features))
] ]
if is_example: if is_example: