update build_and_install_one function to take into account that application log file may not exists#5004
Merged
bedroge merged 1 commit intoeasybuilders:developfrom Sep 24, 2025
Merged
Conversation
…cation log file may not exists
This was referenced Sep 24, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This fixes a regression that was introduced in:
--module-only(re)builds #4958The
application_log = app.logfilechange that was made there implicitly assumes thatapp.logfileis always a path to an existing file, but that's not necessarily the case, for example wheneb --extended-dry-runoreb -xis used.This bug was caught by
test_github_from_pr_x, which fails as follows currently indevelop:This didn't surface in PRs because this test requires a GitHub token, so it's only actually run after a PR is merged, or when a branch is pushed to a fork where a GitHub token is available as a "secret".