Skip to content

Commit

Permalink
Use f-string
Browse files Browse the repository at this point in the history
Contributes to CURA-11482
  • Loading branch information
jellespijker committed Jan 13, 2024
1 parent 09f3114 commit 783bbcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def build(self):
ext = ".so" if self.options.shared else ".a"
self.run(f"objcopy --only-keep-debug --compress-debug-sections=zlib libArcus{ext} libArcus.debug")
self.run(f"objcopy --strip-debug --strip-unneeded libArcus{ext}")
self.run("objcopy --add-gnu-debuglink=libArcus.debug libArcus{ext}")
self.run(f"objcopy --add-gnu-debuglink=libArcus.debug libArcus{ext}")

build_source_dir = self.build_path.parent.parent.as_posix()
self.output.info("Uploading debug symbols to sentry")
Expand Down

0 comments on commit 783bbcc

Please sign in to comment.