Skip to content

Commit

Permalink
Fix sentry upload binary syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Nov 22, 2024
1 parent 8f4c402 commit 939b0e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions recipes/sentrylibrary/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ def send_sentry_debug_files(self, binary_basename):
self.output.info("Uploading debug symbols to sentry")
build_source_dir = Path(self.build_folder).parent.parent.as_posix()
sentry_auth = f"--auth-token {sentry_token} -o {sentry_organization} -p {sentry_project}"
self.run(
f"sentry-cli --auth-token debug-files upload --include-sources {build_source_dir} {sentry_auth}")
self.run(f"sentry-cli debug-files upload --include-sources {build_source_dir} {sentry_auth}")

if self.options.sentry_create_release:
sentry_version = self.version
Expand Down

0 comments on commit 939b0e7

Please sign in to comment.