Skip to content

fix(check-container): add dummy cache property #39

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

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ All notable changes to this project will be documented in this file.

- New `bake` command line argument `--build-arg` to override conf.py build arguments ([#38])

### Fixed

- check-container: fix regression introduced by 0.0.9. Add dummy cache property ([#39])

[#38]: https://github.com/stackabletech/image-tools/pull/38
[#39]: https://github.com/stackabletech/image-tools/pull/39


## [0.0.11]
Expand Down
4 changes: 4 additions & 0 deletions src/image_tools/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ def preflight_args() -> Namespace:
if result.submit and not result.token:
raise ValueError("Missing API token for submitting results.")

# Dummy property needed by the generate_bakefile() function
# but not used by the preflight tool.
result.cache = False

return result


Expand Down