Skip to content

Commit

Permalink
Adjust regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
jmichelp committed Apr 29, 2020
1 parent 8e182b9 commit 8211df8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/python_matcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"file": 1
},
{
"regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((reformatted)\\)$",
"regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((.*)\\)$",
"message": 2
},
{
Expand Down
4 changes: 2 additions & 2 deletions deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ def _build_app_or_example(self, is_example):
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:
Expand Down

0 comments on commit 8211df8

Please sign in to comment.