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

Clean up error messages in the launcher #1070

Open
wants to merge 12 commits into
base: main
Choose a base branch
from

Conversation

davidanthoff
Copy link
Collaborator

No description provided.

davidanthoff and others added 12 commits October 11, 2024 14:17
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@@ -18,7 +18,8 @@ fn command_initial_setup() {
.env("JULIAUP_DEPOT_PATH", depot_dir.path())
.assert()
.success()
.stdout("");
.stdout(predicate::str::is_empty())
.stderr(predicate::str::starts_with("Installing Julia 1.11.0").and(predicate::str::contains("apple.darwin14").not().or(predicate::str::contains("Checking standard library notarization").and(predicate::str::ends_with("done.\n")))));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[rustfmt] reported by reviewdog 🐶

Suggested change
.stderr(predicate::str::starts_with("Installing Julia 1.11.0").and(predicate::str::contains("apple.darwin14").not().or(predicate::str::contains("Checking standard library notarization").and(predicate::str::ends_with("done.\n")))));
.stderr(
predicate::str::starts_with("Installing Julia 1.11.0").and(
predicate::str::contains("apple.darwin14")
.not()
.or(
predicate::str::contains("Checking standard library notarization")
.and(predicate::str::ends_with("done.\n")),
),
),
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant