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
},
{
"regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((reformatted)\\)$",
"regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((.*)\\)$",
"message": 2
},
{

View File

@@ -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: