Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to rustc 1.27.0-nightly (8a37c75a3 2018-05-02) #20703

Merged
merged 4 commits into from May 4, 2018
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Get a real parser, tidy

  • Loading branch information
SimonSapin committed May 4, 2018
commit 82714e08a1c21885484ea210d543a12acd8b7e07
@@ -398,7 +398,8 @@ def check_toml(file_name, lines):
for idx, line in enumerate(lines):
if idx == 0 and "[workspace]" in line:
raise StopIteration
if line.find("*") != -1:
line_without_comment, _, _ = line.partition("#")
if line_without_comment.find("*") != -1:
yield (idx + 1, "found asterisk instead of minimum version number")
for license_line in licenses_toml:
ok_licensed |= (license_line in line)
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.