Skip to content

Commit

Permalink
don't populate the cache for sofware marked as always_build (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
chouquette authored Apr 26, 2024
1 parent 07f5a64 commit 0848904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/omnibus/software.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ def execute_build(build_wrappers)
builder.build
build_wrappers.each { |wrapper| wrapper.execute_post_build(self) }

if Config.use_git_caching
if Config.use_git_caching && !always_build
git_cache.incremental
log.info(log_key) { "Dirtied the cache" }
end
Expand Down

0 comments on commit 0848904

Please sign in to comment.