Skip to content

Commit

Permalink
fix inverted logic
Browse files Browse the repository at this point in the history
  • Loading branch information
chouquette committed Nov 25, 2024
1 parent ab43c61 commit db52d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omnibus/lib/project_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
def sysprobe_enabled?()
# This doesn't account for Windows special case which build system probe as part of the
# agent build process
!heroku_target? && linux_target? && ENV.fetch('SYSTEM_PROBE_BIN', '').empty?
!heroku_target? && linux_target? && !ENV.fetch('SYSTEM_PROBE_BIN', '').empty?
end

0 comments on commit db52d64

Please sign in to comment.