Skip to content

Commit

Permalink
don't specify source_file
Browse files Browse the repository at this point in the history
Contribute to CURA-11482
  • Loading branch information
jellespijker committed Jan 11, 2024
1 parent 556cf23 commit 5edc396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ def build(self):
raise ConanInvalidSystemRequirements("sentry-cli is not installed")
self.output.info("Uploading debug symbols to sentry")
ext = ".exe" if self.settings.os == "Windows" else ""
self.run(f"sentry-cli debug-files upload --include-sources {self.source_folder} -o {sentry_project} -p curaengine CuraEngine{ext}")
self.run(f"sentry-cli debug-files upload --include-sources -o {sentry_project} -p curaengine CuraEngine{ext}")
if self.settings.os == "Windows" and self.settings.build_type == "RelWithDebInfo":
self.run(f"sentry-cli upload-dif --include-sources {self.build_folder} -o {sentry_project} -p curaengine CuraEngine.pdb")
self.run(f"sentry-cli upload-dif --include-sources -o {sentry_project} -p curaengine CuraEngine.pdb")

# create a sentry release and link it to the commit this is based upon
self.output.info(f"Creating a new release {self.version} in Sentry and linking it to the current commit {self.conan_data['commit']}")
Expand Down

0 comments on commit 5edc396

Please sign in to comment.