Skip to content

Commit

Permalink
Revert "Only enable Sentry upload when there is info to upload"
Browse files Browse the repository at this point in the history
This reverts commit b4798bb.
  • Loading branch information
jellespijker committed Jan 19, 2024
1 parent b4798bb commit aca49fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/clipper/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def build(self):
cmake.configure(build_script_folder=os.path.join(self.source_folder, "cpp"))
cmake.build()

if self.options.get_safe("enable_sentry", False) and self.settings.build_type != "Release":
if self.options.get_safe("enable_sentry", False):
# Upload debug symbols to sentry
sentry_project = self.conf.get("user.curaengine:sentry_project", "", check_type=str)
sentry_org = self.conf.get("user.curaengine:sentry_org", "", check_type=str)
Expand Down

0 comments on commit aca49fb

Please sign in to comment.