Skip to content

Commit

Permalink
specify and bundle sources
Browse files Browse the repository at this point in the history
Due to the weird directory structure that clipper has for all different languages
  • Loading branch information
jellespijker committed Jan 19, 2024
1 parent 1a86b50 commit badad7b
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 @@ -79,7 +79,7 @@ def build(self):

build_source_dir = self.build_path.parent.parent.as_posix()
self.output.info("Uploading debug symbols to sentry")
self.run(f"sentry-cli debug-files bundle-sources -o {sentry_org} -p {sentry_project} {os.path.join(build_source_dir, 'src', 'cpp')}")
self.run(f"sentry-cli debug-files bundle-sources {os.path.join(build_source_dir, 'src', 'cpp')}")
self.run(f"sentry-cli debug-files upload --include-sources -o {sentry_org} -p {sentry_project} {build_source_dir}")

def package(self):
Expand Down

0 comments on commit badad7b

Please sign in to comment.